zapret/tpws/Makefile

24 lines
758 B
Makefile
Raw Permalink Normal View History

2021-03-04 16:30:38 +05:00
CC ?= gcc
2024-08-21 12:02:16 +05:00
CFLAGS += -std=gnu99 -O3
CFLAGS_BSD = -Wno-address-of-packed-member
LIBS = -lz -lpthread
2021-03-04 16:30:38 +05:00
SRC_FILES = *.c
all: tpws
tpws: $(SRC_FILES)
2021-03-05 23:23:32 +05:00
$(CC) -s $(CFLAGS) -o $@ $(SRC_FILES) $(LDFLAGS) $(LIBS)
2021-03-04 16:30:38 +05:00
bsd: $(SRC_FILES)
2021-03-05 23:23:32 +05:00
$(CC) -s $(CFLAGS) $(CFLAGS_BSD) -Iepoll-shim/include -o tpws $(SRC_FILES) epoll-shim/src/*.c $(LDFLAGS) $(LIBS)
2021-03-04 16:30:38 +05:00
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
2021-03-04 16:30:38 +05:00
clean:
rm -f tpws *.o