1
0
mirror of https://github.com/PHJArea217/socket-enhancer synced 2024-11-01 00:30:59 +02:00
socket-enhancer/Makefile
2021-08-08 01:15:57 -05:00

9 lines
228 B
Makefile

all: socket-enhancer
socket-enhancer: socket-enhancer.c
$(CC) -shared -fstack-protector-strong -o socket-enhancer socket-enhancer.c -fPIC -ldl -Wall -Wextra -Wl,-z,relro,-z,now
clean:
rm -f socket-enhancer
.PHONY: all clean