mirror of
https://github.com/bol-van/zapret.git
synced 2024-11-11 17:29:16 +05:00
13 lines
254 B
Makefile
13 lines
254 B
Makefile
CC ?= cc
|
|
CFLAGS += -std=gnu99 -s -O3 -Wno-address-of-packed-member -Wno-logical-op-parentheses -Wno-switch
|
|
LIBS = -lz
|
|
SRC_FILES = *.c crypto/*.c
|
|
|
|
all: dvtws
|
|
|
|
dvtws: $(SRC_FILES)
|
|
$(CC) $(CFLAGS) -o $@ $(SRC_FILES) $(LDFLAGS) $(LIBS)
|
|
|
|
clean:
|
|
rm -f dvtws
|