diff options
author | Othmar Gsenger <otti@anytun.org> | 2008-01-08 20:50:30 +0000 |
---|---|---|
committer | Othmar Gsenger <otti@anytun.org> | 2008-01-08 20:50:30 +0000 |
commit | de795cdff551d444fb76c2b190eac80680b2ca65 (patch) | |
tree | 75abff3cbd3d2c11a8e589210d208a74ac53ebf2 /Makefile | |
parent | included pf_key in anytun_key (needs some review) (diff) |
fix in length and nullcypher (still not working)
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -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) |