diff options
author | fche <fche> | 2005-07-19 18:35:12 +0000 |
---|---|---|
committer | fche <fche> | 2005-07-19 18:35:12 +0000 |
commit | 76dab3c2f67fbda25f5f0d6b791f0d23e9cdea7f (patch) | |
tree | fab01fde86cbc45e41e3b6864e1120c98bc9c809 | |
parent | a76c46d5d96b24f2d2b9f1c0f960af8d1f9c6e1f (diff) | |
download | systemtap-steved-76dab3c2f67fbda25f5f0d6b791f0d23e9cdea7f.tar.gz systemtap-steved-76dab3c2f67fbda25f5f0d6b791f0d23e9cdea7f.tar.xz systemtap-steved-76dab3c2f67fbda25f5f0d6b791f0d23e9cdea7f.zip |
2005-07-19 Frank Ch. Eigler <fche@redhat.com>
* Makefile.am (dist-hook): Complete the resulting tarball.
* Makefile.in: Regenerated.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | Makefile.am | 5 | ||||
-rw-r--r-- | Makefile.in | 6 |
3 files changed, 12 insertions, 4 deletions
@@ -1,5 +1,10 @@ 2005-07-19 Frank Ch. Eigler <fche@redhat.com> + * Makefile.am (dist-hook): Complete the resulting tarball. + * Makefile.in: Regenerated. + +2005-07-19 Frank Ch. Eigler <fche@redhat.com> + * translate.cxx (emit_module_init/exit, translate_pass): Conform to newer runtime startup/shutdown hooks. diff --git a/Makefile.am b/Makefile.am index efd1b0f7..f905207e 100644 --- a/Makefile.am +++ b/Makefile.am @@ -17,9 +17,10 @@ AM_CXXFLAGS = -Wall # Get extra libs as needed LDADD = -EXTRA_DIST=testsuite runtime +EXTRA_DIST=testsuite runtime $(wildcard $(srcdir)/*.h) dist-hook: - find $(distdir)/testsuite -name CVS -o -name '*~' -o -name '.#*' | xargs rm -rf + find $(distdir) -name CVS -o -name '*~' -o -name '.#*' | xargs rm -rf + find $(distdir) -name '*.o' -o -name '*.cmd' -o -name '*.mod.c' -o -name '.??*' | xargs rm -rf install-data-local: mkdir -p $(DESTDIR)$(pkgdatadir) diff --git a/Makefile.in b/Makefile.in index 5bdd8cfe..a39970eb 100644 --- a/Makefile.in +++ b/Makefile.in @@ -193,7 +193,7 @@ AM_CXXFLAGS = -Wall # Get extra libs as needed LDADD = -EXTRA_DIST = testsuite runtime +EXTRA_DIST = testsuite runtime $(wildcard $(srcdir)/*.h) p = $(srcdir)/testsuite/parse s = $(srcdir)/testsuite/sem t = $(srcdir)/testsuite/trans @@ -511,6 +511,7 @@ check-TESTS: $(TESTS) distdir: $(DISTFILES) $(am__remove_distdir) mkdir $(distdir) + $(mkdir_p) $(distdir)/$(srcdir) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ list='$(DISTFILES)'; for file in $$list; do \ @@ -740,7 +741,8 @@ uninstall-am: uninstall-binPROGRAMS uninstall-info-am \ uninstall-info-am uninstall-pkglibPROGRAMS dist-hook: - find $(distdir)/testsuite -name CVS -o -name '*~' -o -name '.#*' | xargs rm -rf + find $(distdir) -name CVS -o -name '*~' -o -name '.#*' | xargs rm -rf + find $(distdir) -name '*.o' -o -name '*.cmd' -o -name '*.mod.c' -o -name '.??*' | xargs rm -rf install-data-local: mkdir -p $(DESTDIR)$(pkgdatadir) |