* configure.in: Bump version to 1.5b.
[automake.git] / tests / makevars.test
blob323c843ed8d68dfa09b28816ae498563cd942335
1 #! /bin/sh
3 # Test to make sure that automake includes the needed variables,
4 # but not too many.
6 . $srcdir/defs || exit 1
8 # Find the macros wanted by Automake.
9 $ACLOCAL || exit 1
11 # Create some dummy Makefile.in.
12 : > Makefile.am
14 $AUTOMAKE || exit 1
16 # We are definitely not needing a compiler or preprocessor.
17 egrep '^(CC|CPP|CXX|CXXCPP) =' Makefile.in && exit 1
19 exit 0