summaryrefslogtreecommitdiff
path: root/makefile
blob: dc244687c782127e14af5b71388c06a3997bc4ac (plain)
1
2
3
4
5
6
7
8
9
10
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