Files
helpelf/makefile
2025-09-06 19:32:19 +02:00

14 lines
197 B
Makefile

all:
gcc -Wall -Wextra main.c -g -o helpelf
install:
sudo cp helpelf /usr/bin/helpelf
test:
make
gcc -fstack-protector -static -Wl,-z,relro,-z,now main.c
./helpelf a.out
clean:
rm helpelf