X-Git-Url: https://git.subgeniuskitty.com/xmenu/.git/blobdiff_plain/54931d1465332d5f156944e1983b86e50ad1b209..c1d29e79f4aa52ea2cb4ce2c8726f6d18ce00e60:/Makefile diff --git a/Makefile b/Makefile index 3fdb5e3..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} @@ -8,7 +11,7 @@ all: ${PROG} ${PROG}: ${OBJS} ${CC} -o $@ ${OBJS} ${LDFLAGS} -${OBJS}: config.h +${OBJS}: config.h ${PROG}.h .c.o: ${CC} ${CFLAGS} -c $< @@ -17,12 +20,13 @@ clean: -rm ${OBJS} ${PROG} install: all - install -d ${DESTDIR}${PREFIX}/bin/ - install -m 755 ${PROG} ${DESTDIR}${PREFIX}/bin/ - install -m 644 ${PROG}.1 ${DESTDIR}${MANPREFIX} + 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}/${PROG}.1 + rm -f ${bindir}/bin/${PROG} + rm -f ${mandir}/man1/${PROG}.1 .PHONY: all clean install uninstall