summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorubq323 <ubq323@ubq323.website>2023-08-01 22:37:26 +0100
committerubq323 <ubq323@ubq323.website>2023-08-01 22:37:26 +0100
commit9e555bc2bf618148929e52ccd0efdb1b752bdcac (patch)
tree5e6f01123d795624c0093df6e08307be2b2c8cd0 /Makefile
parent24fb17017e9d6238488c9827da0ee6d0f4f84356 (diff)
compilation of basic arithmetic exprs to bytecode
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 53062a0..0160897 100644
--- a/Makefile
+++ b/Makefile
@@ -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)