Files
helpelf/makefile
2025-09-04 17:30:16 +02:00

14 lines
156 B
Makefile

all:
gcc -Wall -Wextra main.c -g -o helpelf
install:
sudo cp helpelf /usr/bin/helpelf
test:
make
gcc -m32 main.c
./helpelf a.out
clean:
rm helpelf