diff options
author | Uros Majstorovic <majstor@majstor.org> | 2017-08-13 00:22:37 +0200 |
---|---|---|
committer | Uros Majstorovic <majstor@majstor.org> | 2017-08-13 00:22:37 +0200 |
commit | d830d95720e41b3374dd1edda04ef1ea4272967d (patch) | |
tree | b45b601cecdcf8dfa33351c3b2170eac13d13116 /code/vconn/Makefile | |
parent | cdb555810c1fc9c94dd02a66a96876923d78a650 (diff) |
proxy renamed to vconn
Diffstat (limited to 'code/vconn/Makefile')
-rw-r--r-- | code/vconn/Makefile | 13 |
1 files changed, 13 insertions, 0 deletions
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 |