aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 38359d2..982a51a 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-all: client server dummy_client dummy_server
+all: client server dummy_client dummy_server postprocess
CFLAGS = -g -Wall -Wformat-overflow=0 -O3 -lsqlite3 -ftrapv
sqlinit.c: sqlinit.txt
@@ -15,5 +15,7 @@ client: client.o crypto.o test.o iomt.o
cc -o $@ $^ -lcrypto $(CFLAGS)
server: service_provider.o crypto.o helper.o trusted_module.o main.o test.o iomt.o sqlinit.o
cc -o $@ $^ -lcrypto $(CFLAGS)
+postprocess: postprocess.cpp
+ c++ -o $@ $^
clean:
- rm -f *.o a.out client server dummy_client dummy_server
+ rm -f *.o a.out client server dummy_client dummy_server postprocess