summaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
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