File: Makefile.am

package info (click to toggle)
dopewars 1.5.12-18
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 7,040 kB
  • ctags: 4,183
  • sloc: ansic: 31,614; sh: 8,577; makefile: 469; yacc: 318
file content (22 lines) | stat: -rw-r--r-- 793 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
DOCPATH        = ${DESTDIR}${datadir}/doc/${PACKAGE}/html
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