summaryrefslogtreecommitdiff
path: root/lib/am/data.am
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>1995-11-22 08:43:14 +0000
committerTom Tromey <tromey@redhat.com>1995-11-22 08:43:14 +0000
commit8e29706c3fb8776080ded6ce10a16c6e908f48ef (patch)
treeb6d307b89c1a9f9a5b8d07ecb9fab87705bcbfa1 /lib/am/data.am
parent35edb7dd19926cc1e43bb8b86e57c8e9a2684945 (diff)
downloadautomake-8e29706c3fb8776080ded6ce10a16c6e908f48ef.tar.gz
Wrote uninstall targets
Diffstat (limited to 'lib/am/data.am')
-rw-r--r--lib/am/data.am7
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/am/data.am b/lib/am/data.am
index 240a04214..864e88e00 100644
--- a/lib/am/data.am
+++ b/lib/am/data.am
@@ -5,4 +5,11 @@ install-@SHORT@data: $(@LONG@)
$(top_srcdir)/mkinstalldirs $(@DIR@)
for p in $(@LONG@); do \
$(INSTALL_DATA) $(srcdir)/$$p $(@DIR@)/$$p; \
+ done
+
+uninstall:: install-@SHORT@data
+
+uninstall-@SHORT@data:
+ for p in $(@LONG@); do \
+ rm -f $(@DIR@)/$$p; \
done \ No newline at end of file