diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 15 |
1 files changed, 12 insertions, 3 deletions
@@ -31,7 +31,7 @@ OPENVPNDEPS = openvpn/tun.o \ -OBJS = anytun.o tunDevice.o buffer.o $(OPENVPNDEPS) +OBJS = anytun.o tunDevice.o buffer.o cypher.o authAlgo.o $(OPENVPNDEPS) EXECUTABLE = anytun all: $(EXECUTABLE) @@ -42,7 +42,16 @@ anytun: $(OBJS) tunDevice.o: tunDevice.cpp tunDevice.h $(C++) $(CCFLAGS) $< -c -Buffer.o: buffer.cpp buffer.h +buffer.o: buffer.cpp buffer.h + $(C++) $(CCFLAGS) $< -c + +cypher.o: cypher.cpp cypher.h buffer.h + $(C++) $(CCFLAGS) $< -c + +cypher.o: cypher.cpp cypher.h buffer.h + $(C++) $(CCFLAGS) $< -c + +authAlgo.o: authAlgo.cpp authAlgo.h buffer.h $(C++) $(CCFLAGS) $< -c anytun.o: anytun.cpp @@ -50,4 +59,4 @@ anytun.o: anytun.cpp clean: rm -f *.o - rm -f $(EXECUTABLE)
\ No newline at end of file + rm -f $(EXECUTABLE) |