Add herbe (notification display)
This commit is contained in:
24
programs/herbe/Makefile
Normal file
24
programs/herbe/Makefile
Normal 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
|
||||
Reference in New Issue
Block a user