diff options
Diffstat (limited to 'tests/softkiller/Makefile')
-rw-r--r-- | tests/softkiller/Makefile | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/softkiller/Makefile b/tests/softkiller/Makefile new file mode 100644 index 0000000..669f67b --- /dev/null +++ b/tests/softkiller/Makefile @@ -0,0 +1,9 @@ +# we need c99 because of snprintf function! +# (this function does not exist in C89/ANSI C) + +softkiller: softkiller.c + $(CC) -Wall -pedantic -std=c99 -o $@ -lX11 $< + +clean: + rm softkiller + |