herbe/makefile

11 lines
172 B
Makefile
Raw Normal View History

2020-07-20 15:41:19 +02:00
default:
gcc herbe.c -lX11 -lXft -I/usr/include/freetype2 -lm -o herbe
install: default
cp herbe /usr/local/bin
2020-07-30 18:58:09 +02:00
uninstall:
rm /usr/local/bin/herbe
clean:
2020-08-01 21:00:20 +02:00
rm -f herbe