diff options
author | Daniel Jones <admin@danieljon.es> | 2019-05-17 12:24:29 +0930 |
---|---|---|
committer | Daniel Jones <admin@danieljon.es> | 2019-05-17 12:24:29 +0930 |
commit | 03030de14057620c73cbad8f9f6b2267ee26d100 (patch) | |
tree | 449fe2d67c8d5a97c7117df72d09e16f5433c534 /makefile | |
download | xutils-03030de14057620c73cbad8f9f6b2267ee26d100.tar.gz xutils-03030de14057620c73cbad8f9f6b2267ee26d100.zip |
first commit
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 |