]> sourceware.org Git - automake.git/commitdiff
* lex4.test: New file. For PR automake/6.
authorTom Tromey <tromey@redhat.com>
Tue, 14 Dec 1999 06:32:19 +0000 (06:32 +0000)
committerTom Tromey <tromey@redhat.com>
Tue, 14 Dec 1999 06:32:19 +0000 (06:32 +0000)
* Makefile.am (TESTS): Added lex4.test.

tests/ChangeLog
tests/Makefile.am
tests/Makefile.in
tests/lex4.test [new file with mode: 0755]

index 772a4b394aaf96efd9a68b5c787711b5679e5b75..355c22e873118f9988869cf28ea2aa10c7649c20 100644 (file)
@@ -1,5 +1,8 @@
 1999-12-13  Tom Tromey  <tromey@cygnus.com>
 
+       * lex4.test: New file.  For PR automake/6.
+       * Makefile.am (TESTS): Added lex4.test.
+
        * suffix3.test: New file.
        * Makefile.am (TESTS): Added suffix3.test.
 
index 8b634b61e6884f18e50c2b97b244f2b43bc52373..8419a6a537ae625cbbe9a9237d50faaa51316470 100644 (file)
@@ -132,6 +132,7 @@ ldadd.test \
 lex.test \
 lex2.test \
 lex3.test \
+lex4.test \
 libobj.test \
 libobj2.test \
 libobj3.test \
index 6eefc47b3903822390bc96ff226ddb8006df6249..3be4cddf459d18a713f2853966aa0f6ed95ba482 100644 (file)
@@ -199,6 +199,7 @@ ldadd.test \
 lex.test \
 lex2.test \
 lex3.test \
+lex4.test \
 libobj.test \
 libobj2.test \
 libobj3.test \
diff --git a/tests/lex4.test b/tests/lex4.test
new file mode 100755 (executable)
index 0000000..156c515
--- /dev/null
@@ -0,0 +1,23 @@
+#! /bin/sh
+
+# Test to make sure dependencies work with .ll files.
+# Test synthesized from PR automake/6.
+
+. $srcdir/defs || exit 1
+
+cat >> configure.in << 'END'
+AC_PROG_CC
+AC_PROG_CXX
+AM_PROG_LEX
+END
+
+cat > Makefile.am << 'END'
+bin_PROGRAMS = zoo
+zoo_SOURCES = joe.ll
+END
+
+: > joe.ll
+
+$AUTOMAKE || exit 1
+
+fgrep joe.Po Makefile.in
This page took 0.032199 seconds and 5 git commands to generate.