diff options
Diffstat (limited to 'code/proxy/Makefile')
-rw-r--r-- | code/proxy/Makefile | 13 |
1 files changed, 13 insertions, 0 deletions
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 |