diff --git a/evaluation/demonstration/Makefile b/evaluation/demonstration/Makefile new file mode 100644 index 0000000000000000000000000000000000000000..1028623c556e60b6dca800f0908b666d81429542 --- /dev/null +++ b/evaluation/demonstration/Makefile @@ -0,0 +1,21 @@ +CFLAGS=-g -I../../include +LIBS=-lssl -lcrypto -lpthread -ldl +LDFLAGS=-L../.. +TARGETS=client server middlebox + +all: $(TARGETS) + +client: client.o common.o + $(CC) $(LDFLAGS) -o $@ $^ $(LIBS) + +server: server.o common.o + $(CC) $(LDFLAGS) -o $@ $^ $(LIBS) + +middlebox: middlebox.o common.o + $(CC) $(LDFLAGS) -o $@ $^ $(LIBS) + +%.o: %.c + $(CC) $(CFLAGS) -c -o $@ $< + +clean: + rm -f *.o $(TARGETS) \ No newline at end of file