summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--Makefile.am5
-rw-r--r--Makefile.in5
3 files changed, 13 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 4020151e..4279d069 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2005-07-28 Martin Hunt <hunt@redhat.com>
+
+ * Makefile.am (install-data-local): Add runtime/transport.
+ * Makefile.in: regenerated.
+
2005-07-26 Graydon Hoare <graydon@redhat.com>
* elaborate.cxx: Revert builtin-function code.
diff --git a/Makefile.am b/Makefile.am
index 210424e7..e3262f68 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -27,12 +27,15 @@ dist-hook:
find $(distdir) -name '*.o' -o -name '*.ko' -o -name '*.cmd' -o -name '*.mod.c' -o -name '.??*' | xargs rm -rf
install-data-local:
- mkdir -p $(DESTDIR)$(pkgdatadir)/runtime
+ mkdir -p $(DESTDIR)$(pkgdatadir)/runtime/transport
cp -rp $(srcdir)/runtime/*.[ch] $(srcdir)/runtime/Doxyfile \
$(DESTDIR)$(pkgdatadir)/runtime
tar -f - -c --exclude=CVS --exclude='*~' --exclude='.#*' \
-C $(srcdir)/runtime probes \
| (cd $(DESTDIR)$(pkgdatadir)/runtime && tar xpf -)
+ tar -f - -c --exclude=CVS --exclude='*~' --exclude='.#*' \
+ -C $(srcdir)/runtime transport \
+ | (cd $(DESTDIR)$(pkgdatadir)/runtime && tar xpf -)
p=$(srcdir)/testsuite/parse
s=$(srcdir)/testsuite/sem
diff --git a/Makefile.in b/Makefile.in
index 66428825..37a79c78 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -753,12 +753,15 @@ dist-hook:
find $(distdir) -name '*.o' -o -name '*.ko' -o -name '*.cmd' -o -name '*.mod.c' -o -name '.??*' | xargs rm -rf
install-data-local:
- mkdir -p $(DESTDIR)$(pkgdatadir)/runtime
+ mkdir -p $(DESTDIR)$(pkgdatadir)/runtime/transport
cp -rp $(srcdir)/runtime/*.[ch] $(srcdir)/runtime/Doxyfile \
$(DESTDIR)$(pkgdatadir)/runtime
tar -f - -c --exclude=CVS --exclude='*~' --exclude='.#*' \
-C $(srcdir)/runtime probes \
| (cd $(DESTDIR)$(pkgdatadir)/runtime && tar xpf -)
+ tar -f - -c --exclude=CVS --exclude='*~' --exclude='.#*' \
+ -C $(srcdir)/runtime transport \
+ | (cd $(DESTDIR)$(pkgdatadir)/runtime && tar xpf -)
gcov:
@$(MAKE) clean CXXFLAGS="-g -fprofile-arcs -ftest-coverage" all check