From c338872f083f2cfd84b9bb0a4dbc06c96a403a25 Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Mon, 7 May 2001 16:31:01 +0000 Subject: [PATCH] For PR automake/46: * tests/Makefile.am (TESTS): Added subdir5.test. (XFAIL_TESTS): Likewise. * tests/subdir5.test: New file. --- ChangeLog | 5 ++++ Makefile.in | 4 +++ lib/Automake/Makefile.in | 4 +++ lib/Makefile.in | 4 +++ m4/Makefile.in | 4 +++ tests/Makefile.am | 4 ++- tests/Makefile.in | 5 +++- tests/subdir5.test | 59 ++++++++++++++++++++++++++++++++++++++++ 8 files changed, 87 insertions(+), 2 deletions(-) create mode 100755 tests/subdir5.test diff --git a/ChangeLog b/ChangeLog index 28965f59..06e6ee47 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,10 @@ 2001-05-06 Tom Tromey + For PR automake/46: + * tests/Makefile.am (TESTS): Added subdir5.test. + (XFAIL_TESTS): Likewise. + * tests/subdir5.test: New file. + * tests/subobj6.test (wish_SOURCES): Use $MAKE. * tests/subobj5.test (wish_SOURCES): Use $MAKE. diff --git a/Makefile.in b/Makefile.in index 8118fac2..4b2d0106 100644 --- a/Makefile.in +++ b/Makefile.in @@ -434,6 +434,10 @@ distdir: $(DISTFILES) $(mkinstalldirs) $(distdir)/. @for file in $(DISTFILES); do \ d=$(srcdir); \ + dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test "$$dir" != "$$file" && test "$$dir" != "."; then \ + $(mkinstalldirs) "$(distdir)/$$dir"; \ + fi; \ if test -d $$d/$$file; then \ cp -pR $$d/$$file $(distdir) \ || exit 1; \ diff --git a/lib/Automake/Makefile.in b/lib/Automake/Makefile.in index 2de2fd57..e7fd7b41 100644 --- a/lib/Automake/Makefile.in +++ b/lib/Automake/Makefile.in @@ -125,6 +125,10 @@ distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) @for file in $(DISTFILES); do \ d=$(srcdir); \ + dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test "$$dir" != "$$file" && test "$$dir" != "."; then \ + $(mkinstalldirs) "$(distdir)/$$dir"; \ + fi; \ if test -d $$d/$$file; then \ cp -pR $$d/$$file $(distdir) \ || exit 1; \ diff --git a/lib/Makefile.in b/lib/Makefile.in index 29af4d7d..bc408eac 100644 --- a/lib/Makefile.in +++ b/lib/Makefile.in @@ -199,6 +199,10 @@ distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) @for file in $(DISTFILES); do \ d=$(srcdir); \ + dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test "$$dir" != "$$file" && test "$$dir" != "."; then \ + $(mkinstalldirs) "$(distdir)/$$dir"; \ + fi; \ if test -d $$d/$$file; then \ cp -pR $$d/$$file $(distdir) \ || exit 1; \ diff --git a/m4/Makefile.in b/m4/Makefile.in index 9908ee07..c338bc7c 100644 --- a/m4/Makefile.in +++ b/m4/Makefile.in @@ -135,6 +135,10 @@ distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) @for file in $(DISTFILES); do \ d=$(srcdir); \ + dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test "$$dir" != "$$file" && test "$$dir" != "."; then \ + $(mkinstalldirs) "$(distdir)/$$dir"; \ + fi; \ if test -d $$d/$$file; then \ cp -pR $$d/$$file $(distdir) \ || exit 1; \ diff --git a/tests/Makefile.am b/tests/Makefile.am index 5cf16625..d836663a 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -2,7 +2,8 @@ AUTOMAKE_OPTIONS = gnits -XFAIL_TESTS = objc.test subobj2.test yaccvpath.test texinfo10.test subobj6.test +XFAIL_TESTS = objc.test subobj2.test yaccvpath.test texinfo10.test \ +subobj6.test subdir5.test TESTS = \ acinclude.test \ @@ -240,6 +241,7 @@ subdir.test \ subdir2.test \ subdir3.test \ subdir4.test \ +subdir5.test \ subdirbuiltsources.test \ subdircond.test \ subobj.test \ diff --git a/tests/Makefile.in b/tests/Makefile.in index 7b859a1e..0383a090 100644 --- a/tests/Makefile.in +++ b/tests/Makefile.in @@ -75,7 +75,9 @@ install_sh = @install_sh@ AUTOMAKE_OPTIONS = gnits -XFAIL_TESTS = objc.test subobj2.test yaccvpath.test texinfo10.test subobj6.test +XFAIL_TESTS = objc.test subobj2.test yaccvpath.test texinfo10.test \ +subobj6.test subdir5.test + TESTS = \ acinclude.test \ @@ -313,6 +315,7 @@ subdir.test \ subdir2.test \ subdir3.test \ subdir4.test \ +subdir5.test \ subdirbuiltsources.test \ subdircond.test \ subobj.test \ diff --git a/tests/subdir5.test b/tests/subdir5.test new file mode 100755 index 00000000..9e7b571d --- /dev/null +++ b/tests/subdir5.test @@ -0,0 +1,59 @@ +#! /bin/sh + +# Test to make sure that adding a new directory works. +# PR automake/46 + +. $srcdir/defs || exit 1 + +cat > configure.in << 'END' +AC_INIT(a.c) +AM_INIT_AUTOMAKE(maude, 1.0) +AM_PROG_CC_C_O +AC_PROG_CC +AC_OUTPUT(Makefile) +END + +cat > Makefile.am << 'END' +bin_PROGRAMS = wish +wish_SOURCES = a.c +END + +cat > a.c << 'END' +#include +int main () +{ + printf ("hi liver!\n"); + return 0; +} +END + +set -e + +$needs_autoconf + +$ACLOCAL +$AUTOCONF +$AUTOMAKE --include-deps --copy --add-missing +./configure +$MAKE + +# Now add a new directory. +cat > configure.in << 'END' +AC_INIT(a.c) +AM_INIT_AUTOMAKE(maude, 1.0) +AM_PROG_CC_C_O +AC_PROG_CC +AC_OUTPUT(Makefile maude/Makefile) +END + +mkdir maude +cat > maude/Makefile.am << 'END' +include_HEADERS = foo.h +END + +: > maude/foo.h + +echo 'SUBDIRS = maude' >> Makefile.am + +# We want a simple rebuild to create maude/Makefile automatically. +$MAKE -- 2.43.5