Add herbe (notification display)

This commit is contained in:
2024-06-06 23:28:15 +01:00
parent 192120ddf8
commit f16dbc84f6
148 changed files with 404 additions and 1 deletions

24
programs/herbe/Makefile Normal file
View File

@@ -0,0 +1,24 @@
CFLAGS = -Wall -Wextra -pedantic -lX11 -lXft -I/usr/include/freetype2 -pthread
PREFIX ?= /usr/local
CC ?= cc
all: herbe
config.h: config.def.h
cp config.def.h config.h
herbe: herbe.c config.h
$(CC) herbe.c $(CFLAGS) -o herbe
install: herbe
mkdir -p ${DESTDIR}${PREFIX}/bin
cp -f herbe ${DESTDIR}${PREFIX}/bin
uninstall:
rm -f ${DESTDIR}${PREFIX}/bin/herbe
clean:
rm -f herbe
.PHONY: all install uninstall clean