From: Razvan Deaconescu Date: Thu, 11 Nov 2010 14:52:53 +0000 (+0200) Subject: test-socket-signal: add sender and receiver build options to Makefile X-Git-Url: http://p2p-next.cs.pub.ro/gitweb/?a=commitdiff_plain;h=081093b57f0bccc6e6301152bc998af83add05a7;p=p2p-testing-infrastructure.git test-socket-signal: add sender and receiver build options to Makefile --- diff --git a/Utils/test-socket-signal/Makefile b/Utils/test-socket-signal/Makefile index 6697028..fe05266 100644 --- a/Utils/test-socket-signal/Makefile +++ b/Utils/test-socket-signal/Makefile @@ -4,7 +4,7 @@ LDLIBS = -lrt .PHONY: all clean -all: server client peer +all: server client sender receiver peer server: server.o sock_util/sock_util.o @@ -14,6 +14,14 @@ client: client.o sock_util/sock_util.o client.o: client.c sock_util/sock_util.h utils.h +sender: sender.o sock_util/sock_util.o + +sender.o: sender.c sock_util/sock_util.h utils.h + +receiver: receiver.o sock_util/sock_util.o + +receiver.o: receiver.c sock_util/sock_util.h utils.h + peer: peer.o sock_util/sock_util.o peer.o: client.c sock_util/sock_util.h utils.h @@ -21,4 +29,4 @@ peer.o: client.c sock_util/sock_util.h utils.h sock_util/sock_util.o: sock_util/sock_util.c sock_util/sock_util.h clean: - -rm -f *~ *.o server client peer sock_util/*.o sock_util/*~ + -rm -f *~ *.o server client sender receiver peer sock_util/*.o sock_util/*~