From 08e60f4e8abbf7821a02e9768cea6da861c06e0d Mon Sep 17 00:00:00 2001 From: Andrew Elder Date: Thu, 6 Sep 2012 10:33:12 -0400 Subject: [PATCH] examples: makefile change since mrpl and mrpq do not depend on igb library --- examples/Makefile | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/examples/Makefile b/examples/Makefile index a25b198..fe1e69c 100644 --- a/examples/Makefile +++ b/examples/Makefile @@ -13,10 +13,6 @@ test: test.o simple_talker: simple_talker.o -mrpl: mrpl.o - -mrpq: mrpq.o - latency_test: latency_test.o latency_test.o: latency_test.c @@ -28,11 +24,13 @@ test.o: test.c simple_talker.o: simple_talker.c gcc -c $(INCFLAGS) -I../daemons/mrpd $(CFLAGS) simple_talker.c -mrpl.o: mrpl.c +mrpl: mrpl.c gcc -c $(INCFLAGS) -I../daemons/mrpd $(CFLAGS) mrpl.c + $(CC) mrpl.o -o $@ -mrpq.o: mrpq.c +mrpq: mrpq.c gcc -c $(INCFLAGS) -I../daemons/mrpd $(CFLAGS) mrpq.c + $(CC) mrpq.o -o $@ %: %.o $(CC) $(LDFLAGS) $^ $(LDLIBS) -o $@ -- 2.7.4