summaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
authorDaniel Jones <admin@danieljon.es>2019-05-17 12:24:29 +0930
committerDaniel Jones <admin@danieljon.es>2019-05-17 12:24:29 +0930
commit03030de14057620c73cbad8f9f6b2267ee26d100 (patch)
tree449fe2d67c8d5a97c7117df72d09e16f5433c534 /makefile
downloadxutils-03030de14057620c73cbad8f9f6b2267ee26d100.tar.gz
xutils-03030de14057620c73cbad8f9f6b2267ee26d100.zip
first commit
Diffstat (limited to 'makefile')
-rw-r--r--makefile11
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