From 13306fc146b4839d511287f29df8572a80bf8914 Mon Sep 17 00:00:00 2001 From: Matthias Schiffer Date: Sun, 26 Feb 2012 23:13:08 +0100 Subject: Implement I/O for a fixed peer --- src/Makefile | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) (limited to 'src/Makefile') diff --git a/src/Makefile b/src/Makefile index 90619ec..caa6f9f 100644 --- a/src/Makefile +++ b/src/Makefile @@ -1,10 +1,11 @@ all : fastd -fastd : fastd.o method_null.o - gcc -Wall -o $@ $^ +fastd : fastd.o method_null.o task.o handshake.o -fastd.o : fastd.c fastd.h packet.h - gcc -Wall -c -o $@ $< +fastd.o : fastd.c fastd.h task.h queue.h handshake.h +handshake.o : handshake.c packet.h handshake.h +method_null.o : method_null.c fastd.h task.h +task.o : task.c task.h queue.h -method_null.o : method_null.c fastd.h - gcc -Wall -c -o $@ $< +clean : + rm -f fastd fastd.o method_null.o task.o -- cgit v1.2.3