herbe/makefile
2020-07-30 18:58:09 +02:00

11 lines
169 B
Makefile

default:
gcc herbe.c -lX11 -lXft -I/usr/include/freetype2 -o herbe
install: default
cp herbe /usr/local/bin
uninstall:
rm /usr/local/bin/herbe
clean:
rm -f herbe