summaryrefslogtreecommitdiffstats
path: root/src/Makefile
blob: caa6f9ff9169cf52de1740653180a374b30d0f92 (plain)
1
2
3
4
5
6
7
8
9
10
11
all : fastd

fastd : fastd.o method_null.o task.o handshake.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

clean :
	rm -f fastd fastd.o method_null.o task.o