tMakefile.am - vaccinewars - be a doctor and try to vaccinate the world
(HTM) git clone git://src.adamsgaard.dk/vaccinewars
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) LICENSE
---
tMakefile.am (397B)
---
1 DOCPATH = ${DESTDIR}${docdir}/help
2 DOCS = cops.html general.html locations.html sounds.html \
3 drugs.html guns.html server.html
4 EXTRA_DIST = ${DOCS}
5
6 install-data-local:
7 ${INSTALL} -d -m 0755 ${DOCPATH}
8 for doc in ${DOCS}; do \
9 ${INSTALL} -m 0644 ${srcdir}/$${doc} ${DOCPATH}; \
10 done
11
12 uninstall-local:
13 for doc in ${DOCS}; do \
14 /bin/rm -f ${DOCPATH}/$${doc}; \
15 done