From c90d164c0aec8cfd6bafcad6d1c5adb81c86cf1f Mon Sep 17 00:00:00 2001 From: KawaiiAmber Date: Sun, 10 Jan 2021 11:35:34 -0700 Subject: [PATCH] Simplify DESTDIR --- Makefile | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/Makefile b/Makefile index 3a3b05d..f5c7488 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,8 @@ include config.mk +bindir = ${DESTDIR}${PREFIX} +mandir = ${DESTDIR}${MANPREFIX} + SRCS = ${PROG}.c OBJS = ${SRCS:.c=.o} @@ -17,13 +20,13 @@ clean: -rm ${OBJS} ${PROG} install: all - mkdir -p ${DESTDIR}${PREFIX}/bin - install -m 755 ${PROG} ${DESTDIR}${PREFIX}/bin/${PROG} - mkdir -p ${DESTDIR}${MANPREFIX}/man1 - install -m 644 ${PROG}.1 ${DESTDIR}${MANPREFIX}/man1/${PROG}.1 + mkdir -p ${bindir}/bin + install -m 755 ${PROG} ${bindir}/bin/${PROG} + mkdir -p ${mandir}/man1 + install -m 644 ${PROG}.1 ${mandir}/man1/${PROG}.1 uninstall: - rm -f ${DESTDIR}${PREFIX}/bin/${PROG} - rm -f ${DESTDIR}${MANPREFIX}/man1/${PROG}.1 + rm -f ${bindir}/bin/${PROG} + rm -f ${mandir}/man1/${PROG}.1 .PHONY: all clean install uninstall -- 2.20.1