summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorubq323 <ubq323@ubq323.website>2024-06-25 00:51:37 +0100
committerubq323 <ubq323@ubq323.website>2024-06-25 00:51:37 +0100
commitf76f5a8c244ac6d04e4d89778a6d8c2c2040cdc9 (patch)
tree484b9fea3fa5a136972384239f0890a3886bb5ba /Makefile
parente9b99a90510309ac4f5d91d4a5138e7a84904057 (diff)
get functions and arguments and returning to work fully
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index fcb0c82..e81ea76 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,6 @@
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
+CFLAGS=$(EXTRA_CFLAGS) -g -O3 -lm -Wall -Wpedantic -Werror=implicit-function-declaration
bth: $(CS) $(HS) Makefile
$(CC) $(CFLAGS) -o bth $(CS)