summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorubq323 <ubq323@ubq323.website>2024-08-04 13:05:47 +0100
committerubq323 <ubq323@ubq323.website>2024-08-04 13:05:47 +0100
commit000e8ca43f4968412ed5c8fc514bb6caa3e5c450 (patch)
treee82eddb3cb54f75f8468e9a80a17e8b14857aa45 /Makefile
parent1f257ac91ef3813c563203eacb5320b210fc1aa7 (diff)
new reader
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 9fbf2e7..4a0d3b9 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,6 @@
-CS=ast.c com.c dis.c ht.c lib.c mem.c prs.c state.c val.c vm.c
-HS=ast.h chunk.h com.h dis.h ht.h lib.h mem.h prs.h state.h util.h val.h vm.h
-CFLAGS=$(EXTRA_CFLAGS) -g -O3 -lm -Wall -Wpedantic -Werror=implicit-function-declaration
+CS=ast.c com.c dis.c ht.c lib.c mem.c prs.c read.c state.c val.c vm.c
+HS=ast.h chunk.h com.h dis.h ht.h lib.h mem.h prs.h read.h state.h util.h val.h vm.h
+CFLAGS=$(EXTRA_CFLAGS) -g -lm -Wall -Wpedantic -Werror=implicit-function-declaration
bth: $(CS) $(HS) Makefile
$(CC) $(CFLAGS) -o bth $(CS)