mirror of https://github.com/dirtbags/fluffy.git
21 lines
314 B
Makefile
21 lines
314 B
Makefile
CFLAGS = -Wall -Werror
|
|
TARGETS = pmerge puniq p4split pcat
|
|
TARGETS += hd pyesc printfesc xor unhex
|
|
|
|
all: $(TARGETS)
|
|
|
|
%: %.go
|
|
go build $<
|
|
|
|
pmerge: pmerge.o pcap.o
|
|
|
|
puniq: puniq.o pcap.o
|
|
|
|
p4split: p4split.o pcap.o
|
|
|
|
pcat: pcat.o pcap.o stream.o
|
|
pcat.o: CFLAGS += -Wno-unused-variable
|
|
|
|
clean:
|
|
rm -f $(TARGETS) *.o
|