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

client: client.o crypto.o test.o
	cc -o $@ $^ -lcrypto $(CFLAGS)
server: service_provider.o crypto.o helper.o trusted_module.o main.o test.o
	cc -o $@ $^ -lcrypto $(CFLAGS)
clean:
	rm -f *.o a.out client server