2021-03-04 16:30:38 +05:00
|
|
|
CC ?= gcc
|
2022-01-23 16:52:04 +05:00
|
|
|
CFLAGS += -std=gnu99 -Wno-logical-op-parentheses -O3
|
|
|
|
CFLAGS_BSD = -Wno-address-of-packed-member -Wno-switch
|
2024-04-04 13:40:42 +05:00
|
|
|
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)
|
2023-10-06 13:21:20 +05:00
|
|
|
$(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
|