diff options
author | Daniel Jones <admin@danieljon.es> | 2019-09-17 16:00:32 +0930 |
---|---|---|
committer | Daniel Jones <admin@danieljon.es> | 2019-09-17 16:17:06 +0930 |
commit | d3c9a4f3f1bf75d87f2c27daf84ca54eaad1f280 (patch) | |
tree | b6791c61f213cca61118c0501a571a2aca60afb3 /makefile | |
parent | 03030de14057620c73cbad8f9f6b2267ee26d100 (diff) | |
download | xutils-d3c9a4f3f1bf75d87f2c27daf84ca54eaad1f280.tar.gz xutils-d3c9a4f3f1bf75d87f2c27daf84ca54eaad1f280.zip |
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -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 |