X-Git-Url: https://git.datadissipation.net/herbe/blobdiff_plain/45c030065aa79089463169fcf6a8d3393cedf455..30b0961b2e0b8187289ec7b9b038a344a85b0171:/makefile diff --git a/makefile b/makefile index cece8e8..dd26b9a 100644 --- a/makefile +++ b/makefile @@ -1,2 +1,11 @@ default: - gcc main.c -lX11 -lXft -I/usr/include/freetype2 -o main + 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