From 2665559cdc6f8b79f7d9606090aa289c56e699de Mon Sep 17 00:00:00 2001 From: intel-ethernet Date: Thu, 1 Nov 2012 17:25:21 -0700 Subject: [PATCH] Remove obsolete examples makefile --- examples/Makefile | 44 -------------------------------------------- 1 file changed, 44 deletions(-) delete mode 100644 examples/Makefile diff --git a/examples/Makefile b/examples/Makefile deleted file mode 100644 index 2f2c5eb..0000000 --- a/examples/Makefile +++ /dev/null @@ -1,44 +0,0 @@ -OPT=-O2 -#CFLAGS=$(OPT) -Wall -W -Wno-parentheses -Wstrict-prototypes -Wmissing-prototypes -ggdb -CFLAGS=$(OPT) -Wall -W -Wno-parentheses -ggdb - -CC=gcc -INCFLAGS=-I../lib -LDLIBS=-ligb -lpci -lz -pthread -LDFLAGS=-L../lib - -all: test latency_test simple_talker mrpq mrpl - -test: test.o - -simple_talker: simple_talker.o - -latency_test: latency_test.o - -latency_test.o: latency_test.c - gcc -c $(INCFLAGS) $(CFLAGS) latency_test.c - -test.o: test.c - gcc -c $(INCFLAGS) $(CFLAGS) test.c - -simple_talker.o: simple_talker.c - gcc -c $(INCFLAGS) -I../daemons/mrpd $(CFLAGS) simple_talker.c - -mrpl: mrpl.o mrpdclient.o - $(CC) mrpl.o mrpdclient.o -o $@ - -mrpq: mrpq.o mrpdclient.o - $(CC) mrpq.o mrpdclient.o -o $@ - -%.o: %.c - gcc -c $(INCFLAGS) -I../daemons/mrpd $(CFLAGS) $^ - -%: %.o - $(CC) $(LDFLAGS) $^ $(LDLIBS) -o $@ - -clean: - rm -f `find . -name "*~" -o -name "*.[oa]" -o -name "\#*\#" -o -name TAGS -o -name core -o -name "*.orig"` - -indent: - indent --linux-style mrpdclient.c mrpdclient.h mrpl.c mrpq.c - -- 2.7.4