diff options
author | Erwin Nindl <nine@wirdorange.org> | 2007-10-07 21:55:05 +0000 |
---|---|---|
committer | Erwin Nindl <nine@wirdorange.org> | 2007-10-07 21:55:05 +0000 |
commit | f4df57e931a3faca3dea5e08c0d642c0f778651b (patch) | |
tree | 4769a80d70952d744554697d17328f8540354a95 /Makefile | |
parent | added logo (diff) |
added doxygen, and doxygen makefile target
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -3,7 +3,7 @@ CFLAGS = -g -Wall C++ = g++ CCFLAGS = -g -Wall LD = g++ -LDFLAGS = -g -O2 -ldl -lpthread -lsrtp +LDFLAGS = -g -O2 -ldl -lpthread -lsrtp -lgcrypt OPENVPNDEPS = openvpn/tun.o \ openvpn/error.o \ @@ -93,3 +93,7 @@ anytun.o: anytun.cpp clean: rm -f *.o rm -f $(EXECUTABLE) + +doxygen: + doxygen Doxyfile + |