diff options
| author | Akshay Nair <phenax5@gmail.com> | 2020-06-17 15:22:58 +0530 |
|---|---|---|
| committer | Akshay Nair <phenax5@gmail.com> | 2020-06-17 15:22:58 +0530 |
| commit | 266c9c2e780ac0f0c898620ad672f1baaba17bea (patch) | |
| tree | 02b7d9ad51ad80ab2b6216dd00a2655a577955e6 /Makefile | |
| parent | 23fa9a9aa7b5a203646e48609bbc1986b68fe753 (diff) | |
| download | shotkey-266c9c2e780ac0f0c898620ad672f1baaba17bea.tar.gz shotkey-266c9c2e780ac0f0c898620ad672f1baaba17bea.zip | |
Renames daemonic to hotkeyhingy
Diffstat (limited to '')
| -rw-r--r-- | Makefile | 24 |
1 files changed, 12 insertions, 12 deletions
@@ -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 |
