2022-10-04 18:19:19 +00:00
|
|
|
CFLAGS = -Wall -Wextra -pedantic -I/usr/X11R6/include -L/usr/X11R6/lib -lX11 -lXft -I/usr/X11R6/include/freetype2 -pthread
|
2020-08-19 21:02:01 +02:00
|
|
|
|
|
|
|
PREFIX ?= /usr/local
|
|
|
|
CC ?= cc
|
|
|
|
|
2022-10-04 18:22:32 +00:00
|
|
|
compile:
|
2020-08-19 21:02:01 +02:00
|
|
|
cp config.def.h config.h
|
|
|
|
$(CC) herbe.c $(CFLAGS) -o herbe
|
|
|
|
|
2022-10-04 18:22:32 +00:00
|
|
|
install: compile
|
|
|
|
mkdir -p ~/bin
|
|
|
|
cp -f herbe ~/bin
|
|
|
|
chmod +x ~/bin/herbe
|
2020-08-19 21:02:01 +02:00
|
|
|
|
|
|
|
uninstall:
|
2022-10-04 18:22:32 +00:00
|
|
|
rm -f ~/bin/herbe
|
2020-08-19 21:02:01 +02:00
|
|
|
|
2022-10-04 18:22:32 +00:00
|
|
|
.PHONY: compile install uninstall
|