15 lines
239 B
Makefile
15 lines
239 B
Makefile
all:
|
|
gcc -Wall -Wextra main.c -g -o helpelf
|
|
|
|
install:
|
|
sudo cp helpelf /usr/bin/helpelf
|
|
sudo ln -sf /usr/bin/helpelf /usr/bin/he
|
|
|
|
test:
|
|
make
|
|
gcc -fstack-protector -static -Wl,-z,relro,-z,now main.c
|
|
./helpelf a.out
|
|
|
|
clean:
|
|
rm helpelf
|