mirror of
https://github.com/bol-van/zapret.git
synced 2025-08-12 13:15:05 +03:00
binaries
common
docs
files
init.d
ip2net
ipset
mdig
nfq
tmp
tpws
epoll-shim
macos
BSDmakefile
Makefile
gzip.c
gzip.h
helpers.c
helpers.h
hostlist.c
hostlist.h
params.h
pools.c
pools.h
protocol.c
protocol.h
redirect.c
redirect.h
resolver.c
resolver.h
sec.c
sec.h
socks.h
tamper.c
tamper.h
tpws.c
tpws.h
tpws_conn.c
tpws_conn.h
uthash.h
.gitattributes
Makefile
blockcheck.sh
config
install_bin.sh
install_easy.sh
install_prereq.sh
uninstall_easy.sh
24 lines
798 B
Makefile
24 lines
798 B
Makefile
CC ?= gcc
|
|
CFLAGS += -std=gnu99 -Wno-logical-op-parentheses -O3
|
|
CFLAGS_BSD = -Wno-address-of-packed-member -Wno-switch
|
|
LIBS = -lz -lpthread
|
|
SRC_FILES = *.c
|
|
|
|
all: tpws
|
|
|
|
tpws: $(SRC_FILES)
|
|
$(CC) -s $(CFLAGS) -o $@ $(SRC_FILES) $(LDFLAGS) $(LIBS)
|
|
|
|
bsd: $(SRC_FILES)
|
|
$(CC) -s $(CFLAGS) $(CFLAGS_BSD) -Iepoll-shim/include -o tpws $(SRC_FILES) epoll-shim/src/*.c $(LDFLAGS) $(LIBS)
|
|
|
|
mac: $(SRC_FILES)
|
|
$(CC) $(CFLAGS) $(CFLAGS_BSD) -Iepoll-shim/include -Imacos -o tpwsa -target arm64-apple-macos10.8 $(SRC_FILES) epoll-shim/src/*.c $(LDFLAGS) $(LIBS)
|
|
$(CC) $(CFLAGS) $(CFLAGS_BSD) -Iepoll-shim/include -Imacos -o tpwsx -target x86_64-apple-macos10.8 $(SRC_FILES) epoll-shim/src/*.c $(LDFLAGS) $(LIBS)
|
|
strip tpwsa tpwsx
|
|
lipo -create -output tpws tpwsx tpwsa
|
|
rm -f tpwsx tpwsa
|
|
|
|
clean:
|
|
rm -f tpws *.o
|