The manpage should be built to the docs directory

In the spirit of keeping everything organised, the compiled docs should
be in the same directory as the files used to compile them.
This commit is contained in:
Nikos Tsipinakis 2016-12-11 13:48:12 +02:00
parent ad6557239a
commit e3cbe3883a

View File

@ -52,12 +52,12 @@ clean-dunstify:
rm -f dunstify rm -f dunstify
clean-doc: clean-doc:
rm -f dunst.1 rm -f docs/dunst.1
clean: clean-dunst clean-dunstify clean-doc test-clean clean: clean-dunst clean-dunstify clean-doc test-clean
doc: dunst.1 doc: docs/dunst.1
dunst.1: docs/dunst.pod docs/dunst.1: docs/dunst.pod
pod2man --name=dunst -c "Dunst Reference" --section=1 --release=${VERSION} $< > $@ pod2man --name=dunst -c "Dunst Reference" --section=1 --release=${VERSION} $< > $@
service: service:
@ -67,7 +67,7 @@ install-dunst: dunst doc
mkdir -p ${DESTDIR}${PREFIX}/bin mkdir -p ${DESTDIR}${PREFIX}/bin
install -m755 dunst ${DESTDIR}${PREFIX}/bin install -m755 dunst ${DESTDIR}${PREFIX}/bin
mkdir -p ${DESTDIR}${MANPREFIX}/man1 mkdir -p ${DESTDIR}${MANPREFIX}/man1
install -m644 dunst.1 ${DESTDIR}${MANPREFIX}/man1 install -m644 docs/dunst.1 ${DESTDIR}${MANPREFIX}/man1
install-doc: install-doc:
mkdir -p ${DESTDIR}${PREFIX}/share/dunst mkdir -p ${DESTDIR}${PREFIX}/share/dunst