summaryrefslogtreecommitdiff
path: root/src/Makefile
diff options
context:
space:
mode:
authorChristian Pointner <equinox@anytun.org>2008-12-27 01:49:58 +0000
committerChristian Pointner <equinox@anytun.org>2008-12-27 01:49:58 +0000
commitc2e1328f29f4c81459692eec48edadaa473e642a (patch)
treec31e308bfcfaa9cb032d8ae7757806ee9dc9dda1 /src/Makefile
parentinitial checkin (diff)
added empty tun.c and h
Diffstat (limited to 'src/Makefile')
-rw-r--r--src/Makefile7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile
index cd374f4..977cec6 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -47,6 +47,7 @@ endif
OBJS = log.o \
signal.o \
+ tun.o \
uanytun.o
EXECUTABLE = uanytun
@@ -65,9 +66,13 @@ log.o: log.c log.h
signal.o: signal.c signal.h
$(CC) $(CCFLAGS) $< -c
+tun.o: tun.c tun.h
+ $(CC) $(CCFLAGS) $< -c
+
distclean: clean
find . -name *.o -exec rm -f {} \;
- rm -f tunDevice.c
+ find . -name "*.\~*" -exec rm -rf {} \;
+ rm -f tun.c
clean:
rm -f *.o