summaryrefslogtreecommitdiff
path: root/code/vconn/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'code/vconn/Makefile')
-rw-r--r--code/vconn/Makefile13
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