diff options
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/makefile b/makefile new file mode 100644 index 0000000..dc24468 --- /dev/null +++ b/makefile @@ -0,0 +1,11 @@ +all: binstatus xwake xbell + +binstatus: binstatus.c + cc -o binstatus binstatus.c -lX11 +xwake: xwake.c + cc -o xwake xwake.c -lX11 -lXss +xbell: xbell.c + cc -o xbell xbell.c -lX11 +clean: + @rm -f binstatus xwake xbell + @rm -f *.o |