aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 91e294a4f4e9464d3171fe3f706870ed9ffae8a0 (plain)
1
2
3
4
5
6
7
8
9
all: client server Makefile
CFLAGS = -g -Wall -O0 -lsqlite3

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
	cc -o $@ $^ -lcrypto $(CFLAGS)
clean:
	rm -f *.o a.out client server