9 lines
109 B
Makefile
9 lines
109 B
Makefile
all:
|
|
gcc -Wall -Wextra main.c -g -o helpelf
|
|
|
|
install:
|
|
sudo cp helpelf /usr/bin/helpelf
|
|
|
|
clean:
|
|
rm helpelf
|