mirror of
https://github.com/bol-van/zapret.git
synced 2024-12-02 14:40:52 +03:00
13 lines
166 B
Makefile
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
|