summaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
authorDaniel Jones <admin@danieljon.es>2019-09-17 16:00:32 +0930
committerDaniel Jones <admin@danieljon.es>2019-09-17 16:17:06 +0930
commitd3c9a4f3f1bf75d87f2c27daf84ca54eaad1f280 (patch)
treeb6791c61f213cca61118c0501a571a2aca60afb3 /makefile
parent03030de14057620c73cbad8f9f6b2267ee26d100 (diff)
downloadxutils-d3c9a4f3f1bf75d87f2c27daf84ca54eaad1f280.tar.gz
xutils-d3c9a4f3f1bf75d87f2c27daf84ca54eaad1f280.zip
build xbell with c89, make code c89 compliant. also add unfinished xmousepos projectHEADmaster
Diffstat (limited to 'makefile')
-rw-r--r--makefile8
1 files changed, 5 insertions, 3 deletions
diff --git a/makefile b/makefile
index dc24468..c99ad7d 100644
--- a/makefile
+++ b/makefile
@@ -1,11 +1,13 @@
-all: binstatus xwake xbell
+all: binstatus xwake xbell xmousepos
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
+ cc -g -Wall -std=c89 -pedantic -o xbell xbell.c -lX11
+xmousepos: xmousepos.c
+ cc -g -Wall -std=c89 -pedantic -o xmousepos xmousepos.c -lX11
clean:
- @rm -f binstatus xwake xbell
+ @rm -f binstatus xwake xbell xmousepos
@rm -f *.o