birde

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit 88a0d1ac359d8f636ca4954d17a5253538816bec
parent e110523e8efc4b475bd99ff7fc75fe798856c941
Author: mrgrouse <mrgrouse@mrgrouse.com>
Date:   Sat, 31 Aug 2024 01:51:53 -0400

Makefile: update for birde rename

Diffstat:
MMakefile | 14+++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/Makefile b/Makefile @@ -3,22 +3,22 @@ CFLAGS = -Wall -Wextra -pedantic -lX11 -lXft -I/usr/include/freetype2 -pthread PREFIX ?= /usr/local CC ?= cc -all: herbe +all: birde config.h: config.def.h cp config.def.h config.h -herbe: herbe.c config.h - $(CC) herbe.c $(CFLAGS) -o herbe -lXrandr +birde: birde.c config.h + $(CC) birde.c $(CFLAGS) -o birde -lXrandr -install: herbe +install: birde mkdir -p ${DESTDIR}${PREFIX}/bin - cp -f herbe ${DESTDIR}${PREFIX}/bin + cp -f birde ${DESTDIR}${PREFIX}/bin uninstall: - rm -f ${DESTDIR}${PREFIX}/bin/herbe + rm -f ${DESTDIR}${PREFIX}/bin/birde clean: - rm -f herbe + rm -f birde .PHONY: all install uninstall clean