1
0
mirror of https://github.com/bol-van/zapret.git synced 2025-03-23 08:36:26 +03:00
zapret/nfq/BSDmakefile

13 lines
214 B
Makefile
Raw Normal View History

2024-10-28 09:32:24 +03:00
CC ?= cc
CFLAGS += -std=gnu99 -s -O3 -Wno-address-of-packed-member
LIBS = -lz
SRC_FILES = *.c crypto/*.c
all: dvtws
dvtws: $(SRC_FILES)
$(CC) $(CFLAGS) -o $@ $(SRC_FILES) $(LDFLAGS) $(LIBS)
clean:
rm -f dvtws