From ab0325ae7906230f1ea82f08b27c72b075e9a13d Mon Sep 17 00:00:00 2001 From: Uros Majstorovic Date: Tue, 23 May 2017 17:28:12 +0200 Subject: build fixed; added lib util --- code/proxy/Makefile | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 code/proxy/Makefile (limited to 'code/proxy/Makefile') diff --git a/code/proxy/Makefile b/code/proxy/Makefile new file mode 100644 index 0000000..9a8490c --- /dev/null +++ b/code/proxy/Makefile @@ -0,0 +1,13 @@ +CFLAGS = -I../core -pthread -O3 $(PIC) + +obj = proxy.o + + +%.o: %.c %.h + $(CC) $(CFLAGS) -c $< + +all: $(obj) + $(AR) rcs libecpproxy.a $(obj) + +clean: + rm -f *.o *.a \ No newline at end of file -- cgit v1.2.3