diff options
author | Franklin Wei <me@fwei.tk> | 2018-06-27 23:38:36 -0400 |
---|---|---|
committer | Franklin Wei <me@fwei.tk> | 2018-06-27 23:38:36 -0400 |
commit | be7238d18b06b726f1c688c39c21800ef22f72c1 (patch) | |
tree | dbffd58a595b53ed9dc80a21cd9888b5c0187128 /Makefile | |
parent | 3b232072565e54293466f8ba477547686be578bd (diff) | |
download | csaa-be7238d18b06b726f1c688c39c21800ef22f72c1.zip csaa-be7238d18b06b726f1c688c39c21800ef22f72c1.tar.gz csaa-be7238d18b06b726f1c688c39c21800ef22f72c1.tar.bz2 csaa-be7238d18b06b726f1c688c39c21800ef22f72c1.tar.xz |
Optimize DB code
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) |