X-Git-Url: https://git.subgeniuskitty.com/xmenu/.git/blobdiff_plain/95e47cc0233349f8de900448174807bd56faa2ee..8e799bb47ddc6dcb1bc601dfc0bc44bcba2a7948:/Makefile diff --git a/Makefile b/Makefile index 97cab1f..58079ce 100644 --- a/Makefile +++ b/Makefile @@ -8,7 +8,7 @@ all: ${PROG} ${PROG}: ${OBJS} ${CC} -o $@ ${OBJS} ${LDFLAGS} -${OBJS}: config.h +${OBJS}: config.h ${PROG}.h .c.o: ${CC} ${CFLAGS} -c $< @@ -21,7 +21,7 @@ install: all install -D -m 644 ${PROG}.1 ${DESTDIR}${MANPREFIX}/man1/${PROG}.1 uninstall: - rm -f ${DESTDIR}/${PREFIX}/bin/${PROG} - rm -f ${DESTDIR}/${MANPREFIX}/man1/${PROG}.1 + rm -f ${DESTDIR}${PREFIX}/bin/${PROG} + rm -f ${DESTDIR}${MANPREFIX}/man1/${PROG}.1 .PHONY: all clean install uninstall