diff options
author | Markus Teich <markus.teich@stusta.mhn.de> | 2016-02-11 16:49:59 +0100 |
---|---|---|
committer | Markus Teich <markus.teich@stusta.mhn.de> | 2016-02-11 16:51:12 +0100 |
commit | 6a52a85a1ac87b29048863d599a8b0f0ee712482 (patch) | |
tree | 2fc33e57a5abc0a5cb5a0307e797ca80ea09c7a6 /Makefile | |
parent | c28ac1ebf16e5d10a8e0416065e7e3980be1ca5c (diff) | |
download | slock-6a52a85a1ac87b29048863d599a8b0f0ee712482.tar.gz slock-6a52a85a1ac87b29048863d599a8b0f0ee712482.tar.xz |
add slock.1 man page1.3
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -35,7 +35,8 @@ clean: dist: clean @echo creating dist tarball @mkdir -p slock-${VERSION} - @cp -R LICENSE Makefile README config.def.h config.mk ${SRC} slock-${VERSION} + @cp -R LICENSE Makefile README config.def.h config.mk ${SRC} slock.1 \ + slock-${VERSION} @tar -cf slock-${VERSION}.tar slock-${VERSION} @gzip slock-${VERSION}.tar @rm -rf slock-${VERSION} @@ -46,9 +47,15 @@ install: all @cp -f slock ${DESTDIR}${PREFIX}/bin @chmod 755 ${DESTDIR}${PREFIX}/bin/slock @chmod u+s ${DESTDIR}${PREFIX}/bin/slock + @echo installing manual page to ${DESTDIR}${MANPREFIX}/man1 + @mkdir -p ${DESTDIR}${MANPREFIX}/man1 + @sed "s/VERSION/${VERSION}/g" <slock.1 >${DESTDIR}${MANPREFIX}/man1/slock.1 + @chmod 644 ${DESTDIR}${MANPREFIX}/man1/slock.1 uninstall: @echo removing executable file from ${DESTDIR}${PREFIX}/bin @rm -f ${DESTDIR}${PREFIX}/bin/slock + @echo removing manual page from ${DESTDIR}${MANPREFIX}/man1 + @rm -f ${DESTDIR}${MANPREFIX}/man1/slock.1 .PHONY: all options clean dist install uninstall |