mirror of https://github.com/dirtbags/fluffy.git
changed neale's Makefile so he can still say "GET OFF MY LAWN" and compile the
utilities instead of typing ./autogen && make && make install
This commit is contained in:
parent
6d465dfbfe
commit
5d78dd7391
|
@ -1,11 +1,15 @@
|
||||||
CFLAGS = -Wall -Werror
|
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
|
pmerge: pmerge.o pcap.o
|
||||||
puniq: puniq.o pcap.o
|
puniq: puniq.o pcap.o
|
||||||
p4split: p4split.c pcap.o
|
p4split: p4split.c pcap.o
|
||||||
|
|
||||||
|
fake-configh:
|
||||||
|
echo "#define PACKAGE_VERSION \"0.1337\"" > config.h
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm -f $(TARGETS) *.o
|
rm -f $(TARGETS) *.o
|
||||||
|
rm -f config.h
|
||||||
|
|
Loading…
Reference in New Issue