tAdd 'uninstall' rules to placate "make distcheck". - 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
       ---
 (DIR) commit 04671c2be4a24f0c5509ba44faf62ec066192a72
 (DIR) parent 37d59599af2b583506889be2d4df2e3003baa078
 (HTM) Author: Ben Webb <ben@salilab.org>
       Date:   Mon, 21 Oct 2002 09:54:45 +0000
       
       Add 'uninstall' rules to placate "make distcheck".
       
       
       Diffstat:
         M Makefile.am                         |       3 +++
         M doc/Makefile.am                     |       6 ++++++
         M doc/help/Makefile.am                |       5 +++++
         M src/Makefile.am                     |       5 +++++
       
       4 files changed, 19 insertions(+), 0 deletions(-)
       ---
 (DIR) diff --git a/Makefile.am b/Makefile.am
       t@@ -23,3 +23,6 @@ install-data-local:
                chmod 0660 ${SCORE}
                ${mkinstalldirs} ${DESKTOPDIR}
                ${INSTALL} -m 0644 ${srcdir}/${DESKTOP} ${DESKTOPDIR}
       +
       +uninstall-local:
       +        /bin/rm -f ${SCORE} ${DESKTOPDIR}/${DESKTOP}
 (DIR) diff --git a/doc/Makefile.am b/doc/Makefile.am
       t@@ -14,3 +14,9 @@ install-data-local:
                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
 (DIR) diff --git a/doc/help/Makefile.am b/doc/help/Makefile.am
       t@@ -8,3 +8,8 @@ install-data-local:
                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
 (DIR) diff --git a/src/Makefile.am b/src/Makefile.am
       t@@ -52,5 +52,10 @@ install-data-local:
                  ${INSTALL} -m 0644 ${srcdir}/$${pix} ${PIXDIR}; \
                done
        
       +uninstall-local:
       +        for pix in ${PIXMAPS}; do \
       +          /bin/rm -f ${PIXDIR}/$${pix}; \
       +        done
       +
        %.res: %.rc
                windres -O coff -o $@ $<