aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorAkshay Nair <phenax5@gmail.com>2020-06-17 15:22:58 +0530
committerAkshay Nair <phenax5@gmail.com>2020-06-17 15:22:58 +0530
commit266c9c2e780ac0f0c898620ad672f1baaba17bea (patch)
tree02b7d9ad51ad80ab2b6216dd00a2655a577955e6 /Makefile
parent23fa9a9aa7b5a203646e48609bbc1986b68fe753 (diff)
downloadshotkey-266c9c2e780ac0f0c898620ad672f1baaba17bea.tar.gz
shotkey-266c9c2e780ac0f0c898620ad672f1baaba17bea.zip
Renames daemonic to hotkeyhingy
Diffstat (limited to '')
-rw-r--r--Makefile24
1 files changed, 12 insertions, 12 deletions
diff --git a/Makefile b/Makefile
index c655b67..7c86960 100644
--- a/Makefile
+++ b/Makefile
@@ -1,15 +1,15 @@
-# daemonic - dynamic window manager
+# hotkeythingy - dynamic window manager
# See LICENSE file for copyright and license details.
include config.mk
-SRC = daemonic.c
+SRC = hotkeythingy.c
OBJ = ${SRC:.c=.o}
-all: clean options daemonic
+all: clean options hotkeythingy
options:
- @echo daemonic build options:
+ @echo hotkeythingy build options:
@echo "CFLAGS = ${CFLAGS}"
@echo "LDFLAGS = ${LDFLAGS}"
@echo "CC = ${CC}"
@@ -19,22 +19,22 @@ options:
${OBJ}: config.mk
-daemonic: ${OBJ}
+hotkeythingy: ${OBJ}
${CC} -o $@ ${OBJ} ${LDFLAGS}
clean:
- rm -f daemonic ${OBJ}
+ rm -f hotkeythingy ${OBJ}
install: all
mkdir -p ${DESTDIR}${PREFIX}/bin
- cp -f daemonic ${DESTDIR}${PREFIX}/bin
- chmod 755 ${DESTDIR}${PREFIX}/bin/daemonic
+ cp -f hotkeythingy ${DESTDIR}${PREFIX}/bin
+ chmod 755 ${DESTDIR}${PREFIX}/bin/hotkeythingy
mkdir -p ${DESTDIR}${MANPREFIX}/man1
- sed "s/VERSION/${VERSION}/g" < daemonic.1 > ${DESTDIR}${MANPREFIX}/man1/daemonic.1
- chmod 644 ${DESTDIR}${MANPREFIX}/man1/daemonic.1
+ sed "s/VERSION/${VERSION}/g" < hotkeythingy.1 > ${DESTDIR}${MANPREFIX}/man1/hotkeythingy.1
+ chmod 644 ${DESTDIR}${MANPREFIX}/man1/hotkeythingy.1
uninstall:
- rm -f ${DESTDIR}${PREFIX}/bin/daemonic\
- ${DESTDIR}${MANPREFIX}/man1/daemonic.1
+ rm -f ${DESTDIR}${PREFIX}/bin/hotkeythingy\
+ ${DESTDIR}${MANPREFIX}/man1/hotkeythingy.1
.PHONY: all options clean dist install uninstall