Codebase list dopewars / debian/1.5.12-15 doc / Makefile.am
debian/1.5.12-15

Tree @debian/1.5.12-15 (Download .tar.gz)

Makefile.am @debian/1.5.12-15raw · history · blame

DOCPATH        = ${DESTDIR}${datadir}/doc/${PACKAGE}-${VERSION}/
DOCS           = aiplayer.html configfile.html index.html i18n.html \
                 server.html clientplay.html credits.html example-cfg \
                 installation.html servercommands.html commandline.html \
                 contribute.html developer.html metaserver.html \
                 protocol.html windows.html ../LICENCE example-igneous
man_MANS       = dopewars.6
SUBDIRS        = help
EXTRA_DIST     = dopewars.6.in ${DOCS}
DISTCLEANFILES = dopewars.6

install-data-local:
	${INSTALL} -d -m 0755 ${DOCPATH}
	for doc in ${DOCS}; do \
	  ${INSTALL} -m 0644 ${srcdir}/$${doc} ${DOCPATH}; \
	done

uninstall-local:
	for doc in ${DOCS}; do \
          /bin/rm -f ${DOCPATH}/$${doc}; \
	done
	/bin/rm -f ${DOCPATH}/LICENCE