rice/dwm-stat/Makefile
2019-09-02 02:50:57 -07:00

14 lines
224 B
Makefile

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