1
0
mirror of https://github.com/bol-van/zapret.git synced 2025-05-09 23:32:57 +03:00
2016-03-07 17:48:23 +03:00

13 lines
166 B
Makefile

CC = gcc
CFLAGS = -s
LIBS = -lnetfilter_queue -lnfnetlink
SRC_FILES = *.c
all: nfqws
nfqws: $(SRC_FILES)
$(CC) $(CFLAGS) -o $@ $^ $(LIBS)
clean:
rm -f nfqws *.o