From 5cfc45336702f9edb4e1c65890157e7ccdafd482 Mon Sep 17 00:00:00 2001 From: Christoph Lohmann <20h@r-36.net> Date: Wed, 24 Jul 2019 15:04:40 +0200 Subject: Add install target to Makefile. Fix manpath. --- Makefile | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'Makefile') diff --git a/Makefile b/Makefile index da97e66..a1624c8 100644 --- a/Makefile +++ b/Makefile @@ -18,3 +18,19 @@ options: gramscii: $(SRC) $(INCLUDES) $(CC) $(CFLAGS) -o $@ $(SRC) +install: all + @echo installing executable to ${DESTDIR}${BINDIR} + @mkdir -p "${DESTDIR}${BINDIR}" + @cp -f ${NAME} "${DESTDIR}${BINDIR}" + @chmod 755 "${DESTDIR}${BINDIR}/${NAME}" + @echo installing manpage to "${DESTDIR}${MANDIR}/man1" + @mkdir -p "${DESTDIR}${MANDIR}/man1" + @cp -f ${NAME}.1 "${DESTDIR}${MANDIR}/man1" + @chmod 644 "${DESTDIR}${MANDIR}/man1/${NAME}.1" + +uninstall: + @echo removing executable file from ${DESTDIR}${BINDIR} + @rm -f "${DESTDIR}${BINDIR}/${NAME}" + @echo removing manpage from "${DESTDIR}${MANDIR}" + @rm -f "${DESTDIR}${MANDIR}/man1/${NAME}.1" + -- cgit v1.2.3