1
0
mirror of https://github.com/PHJArea217/socket-enhancer synced 2025-01-18 06:11:06 +02:00
socket-enhancer/Makefile

9 lines
228 B
Makefile
Raw Normal View History

2021-06-17 11:55:09 -05:00
all: socket-enhancer
2021-06-16 17:57:18 -05:00
socket-enhancer: socket-enhancer.c
2021-08-08 01:15:57 -05:00
$(CC) -shared -fstack-protector-strong -o socket-enhancer socket-enhancer.c -fPIC -ldl -Wall -Wextra -Wl,-z,relro,-z,now
2021-06-17 11:55:09 -05:00
clean:
rm -f socket-enhancer
.PHONY: all clean