summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorubq323 <ubq323@ubq323.website>2024-08-09 23:37:13 +0100
committerubq323 <ubq323@ubq323.website>2024-08-09 23:37:13 +0100
commit14b6304bb416795ca1016e9ce5f052b0861e5a48 (patch)
treec3d89d22e85f8ebb7070ed742a8baef471aa64c8 /Makefile
parentd046c7d20fd283c90495d3af4bb53d1cfb2a0812 (diff)
add ssplit
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index ef71e96..df852dd 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,6 @@
CS= com.c dis.c ht.c lib.c mem.c read.c state.c val.c vm.c
HS=chunk.h com.h dis.h ht.h lib.h mem.h read.h state.h util.h val.h vm.h
-CFLAGS=$(EXTRA_CFLAGS) -g -lm -Wall -Wpedantic -Werror=implicit-function-declaration
+CFLAGS=$(EXTRA_CFLAGS) -O3 -g -lm -Wall -Wpedantic -Werror=implicit-function-declaration
bth: $(CS) $(HS) Makefile
$(CC) $(CFLAGS) -o bth $(CS)