rice/dwm-stat/Makefile

14 lines
224 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:
2019-09-02 09:50:57 +00:00
gcc -D LAPTOP=1 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