* tests/Makefile.am (TESTS): Added yacc5.test.
[automake.git] / tests / subdircond.test
blob25bb5e84e273f387519076cde8aca45086e83858
1 #! /bin/sh
3 # It is ok to have a conditional SUBDIRS when using gettext.
5 . $srcdir/defs || exit 1
7 cat >> configure.in << 'END'
8 AM_GNU_GETTEXT
9 AM_CONDITIONAL(MAUDE, true)
10 ALL_LINGUAS=
11 AC_SUBST(ALL_LINGUAS)
12 END
14 mkdir po intl
16 cat > Makefile.am << 'END'
17 if MAUDE
18 SUBDIRS = po intl
19 else
20 SUBDIRS =
21 endif
22 END
24 $AUTOMAKE