11 lines
197 B
Makefile
11 lines
197 B
Makefile
default:
|
|
gcc herbe.c -Wall -Wextra -pedantic -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
|