fluffy/Makefile

11 lines
136 B
Makefile
Raw Normal View History

2011-04-21 16:12:01 -06:00
CFLAGS = -Wall -Werror
2011-04-22 12:47:08 -06:00
TARGETS = pmerge puniq
2011-04-21 16:12:01 -06:00
2011-04-22 12:47:08 -06:00
all: $(TARGETS)
pmerge: pmerge.o pcap.o
puniq: puniq.o pcap.o
clean:
rm -f $(TARGETS)