From 57a63fc9304e71ddd2cf434cc4c8789a1a3a3c88 Mon Sep 17 00:00:00 2001 From: Matthias Schiffer Date: Sat, 25 Feb 2012 22:53:33 +0100 Subject: Init tun interface and define some structures --- src/Makefile | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 src/Makefile (limited to 'src/Makefile') diff --git a/src/Makefile b/src/Makefile new file mode 100644 index 0000000..90619ec --- /dev/null +++ b/src/Makefile @@ -0,0 +1,10 @@ +all : fastd + +fastd : fastd.o method_null.o + gcc -Wall -o $@ $^ + +fastd.o : fastd.c fastd.h packet.h + gcc -Wall -c -o $@ $< + +method_null.o : method_null.c fastd.h + gcc -Wall -c -o $@ $< -- cgit v1.2.3