mirror of
https://github.com/PHJArea217/socket-enhancer
synced 2024-11-01 00:30:59 +02:00
9 lines
228 B
Makefile
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
|