diff options
author | Christian Pointner <equinox@anytun.org> | 2007-06-18 16:27:43 +0000 |
---|---|---|
committer | Christian Pointner <equinox@anytun.org> | 2007-06-18 16:27:43 +0000 |
commit | a535453d0378fc6674b5af9eac8e608d907a8f9f (patch) | |
tree | 18f9bb1e7ef1d27a7f9e7763d23b9d0c30dea361 /Makefile | |
parent | I-D anytun some typos (diff) |
bugfix @buffer resize
added buffer resizefront & back
added package
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -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 |