mirror of
https://github.com/bol-van/zapret.git
synced 2024-11-11 17:29:16 +05:00
13 lines
242 B
Makefile
13 lines
242 B
Makefile
|
CC ?= cc
|
||
|
CFLAGS += -std=gnu99 -s -O3 -Wno-logical-op-parentheses
|
||
|
LIBS = -lz
|
||
|
SRC_FILES = *.c
|
||
|
|
||
|
all: tpws
|
||
|
|
||
|
tpws: $(SRC_FILES)
|
||
|
$(CC) $(CFLAGS) -Iepoll-shim/include -o $@ $(SRC_FILES) epoll-shim/src/*.c $(LDFLAGS) $(LIBS)
|
||
|
|
||
|
clean:
|
||
|
rm -f tpws *.o
|