summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorChristian Pointner <equinox@anytun.org>2007-06-18 16:27:43 +0000
committerChristian Pointner <equinox@anytun.org>2007-06-18 16:27:43 +0000
commita535453d0378fc6674b5af9eac8e608d907a8f9f (patch)
tree18f9bb1e7ef1d27a7f9e7763d23b9d0c30dea361 /Makefile
parentI-D anytun some typos (diff)
bugfix @buffer resize
added buffer resizefront & back added package
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index c84e63f..c94b0e0 100644
--- a/Makefile
+++ b/Makefile
@@ -31,7 +31,7 @@ OPENVPNDEPS = openvpn/tun.o \
-OBJS = anytun.o tunDevice.o buffer.o cypher.o authAlgo.o $(OPENVPNDEPS)
+OBJS = anytun.o tunDevice.o buffer.o package.o cypher.o authAlgo.o $(OPENVPNDEPS)
EXECUTABLE = anytun
all: $(EXECUTABLE)
@@ -45,6 +45,9 @@ tunDevice.o: tunDevice.cpp tunDevice.h
buffer.o: buffer.cpp buffer.h
$(C++) $(CCFLAGS) $< -c
+package.o: package.cpp package.h buffer.h
+ $(C++) $(CCFLAGS) $< -c
+
cypher.o: cypher.cpp cypher.h buffer.h
$(C++) $(CCFLAGS) $< -c