mirror of
https://github.com/netblue30/firejail.git
synced 2026-05-24 06:02:28 -06:00
13 lines
250 B
Makefile
13 lines
250 B
Makefile
all: argtest
|
|
|
|
argtest: main.c
|
|
gcc -o argtest main.c
|
|
|
|
clean:; rm -f argtest; rm -fr symtest; rm -f out out.*
|
|
|
|
install:;install -c -m 0755 argtest /usr/local/bin/argtest
|
|
|
|
uninstall:; rm -f /usr/local/bin/argtest
|
|
|
|
|
|
test:; ./arguments.sh | grep TESTING
|