mirror of
https://github.com/dirtbags/fluffy.git
synced 2025-01-08 04:50:59 -07:00
11 lines
177 B
Makefile
11 lines
177 B
Makefile
CFLAGS = -Wall -Werror
|
|
TARGETS = pmerge puniq p4split hd
|
|
|
|
all: $(TARGETS)
|
|
|
|
pmerge: pmerge.o pcap.o
|
|
puniq: puniq.o pcap.o
|
|
p4split: p4split.c pcap.o
|
|
|
|
clean:
|
|
rm -f $(TARGETS) *.o
|