From 3a08c0362c0ce00e54f7da4b017d5d2e09ec9b7d Mon Sep 17 00:00:00 2001 From: Andrew Elder Date: Thu, 20 Dec 2012 19:37:42 -0500 Subject: [PATCH] examples: update makefile to use $(CC) --- examples/mrp_client/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/mrp_client/Makefile b/examples/mrp_client/Makefile index 94aa122..89cba10 100644 --- a/examples/mrp_client/Makefile +++ b/examples/mrp_client/Makefile @@ -13,13 +13,13 @@ mrpl: mrpl.o mrpdclient.o mrpq: mrpq.o mrpdclient.o mrpl.o: mrpl.c - gcc -c $(INCFLAGS) -I../../daemons/mrpd $(CFLAGS) mrpl.c + $(CC) -c $(INCFLAGS) -I../../daemons/mrpd $(CFLAGS) mrpl.c mrpq.o: mrpq.c - gcc -c $(INCFLAGS) -I../../daemons/mrpd $(CFLAGS) mrpq.c + $(CC) -c $(INCFLAGS) -I../../daemons/mrpd $(CFLAGS) mrpq.c mrpdclient.o: mrpdclient.c - gcc -c $(INCFLAGS) -I../../daemons/mrpd $(CFLAGS) mrpdclient.c + $(CC) -c $(INCFLAGS) -I../../daemons/mrpd $(CFLAGS) mrpdclient.c %: %.o $(CC) $(LDFLAGS) $^ $(LDLIBS) -o $@ -- 2.7.4