From 5d78dd7391e86c1f6f290fea309d5392eae11d9b Mon Sep 17 00:00:00 2001 From: pi-rho Date: Wed, 22 Feb 2012 21:07:20 -0600 Subject: [PATCH] changed neale's Makefile so he can still say "GET OFF MY LAWN" and compile the utilities instead of typing ./autogen && make && make install --- src/Makefile | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/Makefile b/src/Makefile index 4ce1035..19b36d5 100644 --- a/src/Makefile +++ b/src/Makefile @@ -1,11 +1,15 @@ CFLAGS = -Wall -Werror -TARGETS = pmerge puniq p4split hd +TARGETS = pmerge puniq p4split hdng xor unhex repr -all: $(TARGETS) +all: fake-configh $(TARGETS) pmerge: pmerge.o pcap.o puniq: puniq.o pcap.o p4split: p4split.c pcap.o +fake-configh: + echo "#define PACKAGE_VERSION \"0.1337\"" > config.h + clean: rm -f $(TARGETS) *.o + rm -f config.h