summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorOthmar Gsenger <otti@anytun.org>2008-01-08 20:50:30 +0000
committerOthmar Gsenger <otti@anytun.org>2008-01-08 20:50:30 +0000
commitde795cdff551d444fb76c2b190eac80680b2ca65 (patch)
tree75abff3cbd3d2c11a8e589210d208a74ac53ebf2 /Makefile
parentincluded pf_key in anytun_key (needs some review) (diff)
fix in length and nullcypher (still not working)
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 8 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 9e5c414..3ba33b4 100644
--- a/Makefile
+++ b/Makefile
@@ -78,7 +78,7 @@ OBJS = anytun.o \
EXECUTABLE = anytun
-all: $(EXECUTABLE)
+all: $(EXECUTABLE) libAnysync.a
anytun: $(OBJS)
$(LD) $(OBJS) -o $@ $(LDFLAGS)
@@ -170,6 +170,13 @@ router.o: router.cpp router.h
anytun.o: anytun.cpp
$(C++) $(CCFLAGS) $< -c
+cConnectionParam.o: cConnectionParam.cpp
+ $(C++) $(CCFLAGS) $< -c
+
+libAnysync.a: $(OBJS)
+ ar cru $@ $(OBJS)
+ ranlib $@
+
clean:
rm -f *.o
rm -f $(EXECUTABLE)