diff options
author | thing1 <thing1@seacrossedlovers.xyz> | 2024-07-09 15:40:55 +0100 |
---|---|---|
committer | thing1 <thing1@seacrossedlovers.xyz> | 2024-07-09 15:40:55 +0100 |
commit | b6cf209e65721c9b749124e6c5866b9359fc6583 (patch) | |
tree | 6426e7481f864b3a1d72c0bc21e4c89df6e9463e /comp/lucas-standen-NEA/code/execution/Makefile | |
parent | 3f23b452f8ab504a3337f88ddc714c3a660d2648 (diff) |
made alot work with vars
Diffstat (limited to 'comp/lucas-standen-NEA/code/execution/Makefile')
-rw-r--r-- | comp/lucas-standen-NEA/code/execution/Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/comp/lucas-standen-NEA/code/execution/Makefile b/comp/lucas-standen-NEA/code/execution/Makefile index 00c18b6..a22db25 100644 --- a/comp/lucas-standen-NEA/code/execution/Makefile +++ b/comp/lucas-standen-NEA/code/execution/Makefile @@ -1,8 +1,10 @@ -all: exec builtin +all: exec builtin vars $(info done execution!) -exec: exec.c builtin - cc exec.c builtin.o ../tokenizer/tokenizer.o ../global/util.o -o exec -ggdb +exec: exec.c builtin vars + cc exec.c builtin.o vars.o ../tokenizer/tokenizer.o ../global/util.o -o exec -ggdb builtin: builtin.c cc builtin.c -c -o builtin.o -ggdb +vars: vars.c + cc vars.c -c -o vars.o -ggdb clean: rm -rf *.o exec |