blob: c99ad7dc9fe2e46bc182f2de79f85263526f1b6a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
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 -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 xmousepos
@rm -f *.o
|