9 lines
126 B
Makefile
9 lines
126 B
Makefile
stat:
|
|
gcc -o statline status.c -O2 -s -lX11
|
|
|
|
clean:
|
|
rm -f statline
|
|
|
|
install:
|
|
ln -s $(shell pwd)/statline /usr/bin/statline
|