aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorFranklin Wei <me@fwei.tk>2018-06-27 23:38:36 -0400
committerFranklin Wei <me@fwei.tk>2018-06-27 23:38:36 -0400
commitbe7238d18b06b726f1c688c39c21800ef22f72c1 (patch)
treedbffd58a595b53ed9dc80a21cd9888b5c0187128 /Makefile
parent3b232072565e54293466f8ba477547686be578bd (diff)
downloadcsaa-be7238d18b06b726f1c688c39c21800ef22f72c1.zip
csaa-be7238d18b06b726f1c688c39c21800ef22f72c1.tar.gz
csaa-be7238d18b06b726f1c688c39c21800ef22f72c1.tar.bz2
csaa-be7238d18b06b726f1c688c39c21800ef22f72c1.tar.xz
Optimize DB code
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 91e294a..925c342 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,5 @@
all: client server Makefile
-CFLAGS = -g -Wall -O0 -lsqlite3
+CFLAGS = -g -Wall -O3 -lsqlite3
client: client.o crypto.o test.o iomt.o
cc -o $@ $^ -lcrypto $(CFLAGS)