rice/dwm-stat/Makefile

14 lines
222 B
Makefile
Raw Normal View History

flags=-O2 -s -lX11
output=statline
2019-07-21 02:09:20 +00:00
stat:
gcc -o $(output) status.c $(flags)
laptop:
gcc -D LAPTOP status.c -o $(output) status.c $(flags)
2019-07-21 02:09:20 +00:00
clean:
rm -f statline
install:
ln -s $(shell pwd)/statline /usr/bin/statline