rice/dwm-stat/Makefile
2019-08-30 14:08:19 -07:00

14 lines
222 B
Makefile

flags=-O2 -s -lX11
output=statline
stat:
gcc -o $(output) status.c $(flags)
laptop:
gcc -D LAPTOP status.c -o $(output) status.c $(flags)
clean:
rm -f statline
install:
ln -s $(shell pwd)/statline /usr/bin/statline