From d830d95720e41b3374dd1edda04ef1ea4272967d Mon Sep 17 00:00:00 2001 From: Uros Majstorovic Date: Sun, 13 Aug 2017 00:22:37 +0200 Subject: proxy renamed to vconn --- code/vconn/Makefile | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 code/vconn/Makefile (limited to 'code/vconn/Makefile') diff --git a/code/vconn/Makefile b/code/vconn/Makefile new file mode 100644 index 0000000..0292b0d --- /dev/null +++ b/code/vconn/Makefile @@ -0,0 +1,13 @@ +CFLAGS = -I../core -pthread -O3 $(PIC) + +obj = vconn.o + + +%.o: %.c %.h + $(CC) $(CFLAGS) -c $< + +all: $(obj) + $(AR) rcs libecpvconn.a $(obj) + +clean: + rm -f *.o *.a \ No newline at end of file -- cgit v1.2.3