X-Git-Url: https://git.subgeniuskitty.com/xmenu/.git/blobdiff_plain/1ca0d0d6dca00a3c34d4756b970f1777ad125a68..c1d29e79f4aa52ea2cb4ce2c8726f6d18ce00e60:/Makefile 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