X-Git-Url: http://git.subgeniuskitty.com/xmenu/.git/blobdiff_plain/dddba407f43a5b9ef23e8a0ed387742a740e08f5..f5bc660a723dab74b3436530842e1b297c2b0e4f:/Makefile diff --git a/Makefile b/Makefile index d63b397..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,10 +20,13 @@ clean: -rm ${OBJS} ${PROG} install: all - install -d ${DESTDIR}${PREFIX}/bin/ - install -m 755 ${PROG} ${DESTDIR}${PREFIX}/bin/ + 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 ${bindir}/bin/${PROG} + rm -f ${mandir}/man1/${PROG}.1 .PHONY: all clean install uninstall