diff options
author | fche <fche> | 2005-08-11 17:03:05 +0000 |
---|---|---|
committer | fche <fche> | 2005-08-11 17:03:05 +0000 |
commit | 4d4f412b8c3ba495bde69c03de797556322e42b7 (patch) | |
tree | 9a77c86ee45fd54b973f3d7682bb99b204ead2cd | |
parent | 0d155048397c88db09a25989450568e25af8f44c (diff) | |
download | systemtap-steved-4d4f412b8c3ba495bde69c03de797556322e42b7.tar.gz systemtap-steved-4d4f412b8c3ba495bde69c03de797556322e42b7.tar.xz systemtap-steved-4d4f412b8c3ba495bde69c03de797556322e42b7.zip |
2005-08-11 Frank Ch. Eigler <fche@elastic.org>
* Makefile.am (uninstall-local): New target.
* Makefile.in: Regenerate.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | Makefile.am | 6 | ||||
-rw-r--r-- | Makefile.in | 10 |
3 files changed, 19 insertions, 2 deletions
@@ -1,5 +1,10 @@ 2005-08-11 Frank Ch. Eigler <fche@elastic.org> + * Makefile.am (uninstall-local): New target. + * Makefile.in: Regenerate. + +2005-08-11 Frank Ch. Eigler <fche@elastic.org> + * translate.cxx (emit_function): Add an extra { } around the function body visitation. * tapset/timestamp_functions.stp: New file. diff --git a/Makefile.am b/Makefile.am index 4bbf2f64..5526c7f7 100644 --- a/Makefile.am +++ b/Makefile.am @@ -89,3 +89,9 @@ clean-local: rm -f *.gcov *.gcno *.gcda ${PACKAGE_TARNAME}-*.tar.gz rm -rf testsuite rm -rf ${PACKAGE_TARNAME}-${PACKAGE_VERSION} + +uninstall-local: + rm -rf $(DESTDIR)$(pkgdatadir) + rm -rf $(DESTDIR)$(libexecdir)/$(PACKAGE) + -rm -rf $(DESTDIR)$(localstatedir)/cache/$(PACKAGE) + diff --git a/Makefile.in b/Makefile.in index 4299d023..5af2f466 100644 --- a/Makefile.in +++ b/Makefile.in @@ -874,7 +874,8 @@ ps: ps-am ps-am: -uninstall-am: uninstall-binPROGRAMS uninstall-info-am uninstall-man +uninstall-am: uninstall-binPROGRAMS uninstall-info-am uninstall-local \ + uninstall-man uninstall-man: uninstall-man1 @@ -892,7 +893,7 @@ uninstall-man: uninstall-man1 installdirs maintainer-clean maintainer-clean-generic \ mostlyclean mostlyclean-compile mostlyclean-generic pdf pdf-am \ ps ps-am tags uninstall uninstall-am uninstall-binPROGRAMS \ - uninstall-info-am uninstall-man uninstall-man1 + uninstall-info-am uninstall-local uninstall-man uninstall-man1 dist-hook: find $(distdir) -name CVS -o -name '*~' -o -name '.#*' | xargs rm -rf @@ -936,6 +937,11 @@ clean-local: rm -f *.gcov *.gcno *.gcda ${PACKAGE_TARNAME}-*.tar.gz rm -rf testsuite rm -rf ${PACKAGE_TARNAME}-${PACKAGE_VERSION} + +uninstall-local: + rm -rf $(DESTDIR)$(pkgdatadir) + rm -rf $(DESTDIR)$(libexecdir)/$(PACKAGE) + -rm -rf $(DESTDIR)$(localstatedir)/cache/$(PACKAGE) # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: |