diff options
Diffstat (limited to 'src/Makefile')
-rw-r--r-- | src/Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
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 $@ $< |