herbe/makefile
2020-08-01 21:00:20 +02:00

11 lines
No EOL
172 B
Makefile

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