diff options
author | ubq323 <ubq323@ubq323.website> | 2024-06-24 16:49:15 +0100 |
---|---|---|
committer | ubq323 <ubq323@ubq323.website> | 2024-06-24 16:49:15 +0100 |
commit | 08d7465f5a841366ec4c66f11475ede4e9082a8d (patch) | |
tree | 556527c70b412034a4c7ae18f70a7f6906391900 /Makefile | |
parent | 8c3037662ba572a6935170dbd4cb8cc8a3636417 (diff) |
refactor error checking and argument parsing
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ -CS=ast.c com.c dis.c ht.c mem.c prs.c read.c state.c val.c vm.c -HS=ast.h chunk.h com.h dis.h ht.h mem.h prs.h read.h state.h val.h vm.h +CS=ast.c com.c dis.c ht.c mem.c prs.c read.c state.c val.c vm.c +HS=ast.h chunk.h com.h dis.h ht.h mem.h prs.h read.h state.h util.h val.h vm.h CFLAGS=$(EXTRA_CFLAGS) -O3 -lm -Wall -Wpedantic -Werror=implicit-function-declaration bth: $(CS) $(HS) Makefile |