aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 925c342258ab027f647340b7285abc6d6cc7810e (plain)
1
2
3
4
5
6
7
8
9
all: client server Makefile
CFLAGS = -g -Wall -O3 -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