diff options
author | ubq323 <ubq323@ubq323.website> | 2023-08-01 22:37:26 +0100 |
---|---|---|
committer | ubq323 <ubq323@ubq323.website> | 2023-08-01 22:37:26 +0100 |
commit | 9e555bc2bf618148929e52ccd0efdb1b752bdcac (patch) | |
tree | 5e6f01123d795624c0093df6e08307be2b2c8cd0 /Makefile | |
parent | 24fb17017e9d6238488c9827da0ee6d0f4f84356 (diff) |
compilation of basic arithmetic exprs to bytecode
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ -CS=parser.c ast.c run.c read.c ht.c -HS=parser.h ast.h run.h read.h ht.h +CS=ast.c com.c dis.c parser.c read.c val.c vm.c +HS=ast.h dis.h parser.h read.h val.h vm.h CFLAGS=-O3 -Wall -Wpedantic -Werror=implicit-function-declaration badthing: $(CS) $(HS) |