ar-lib: new 'AM_PROG_AR' macro, triggering the 'ar-lib' script
[automake.git] / tests / primary-prefix-valid-couples.test
blob17f450a8d7e50d0274b0092bfc220d8ddc29aebc
1 #! /bin/sh
2 # Copyright (C) 2011 Free Software Foundation, Inc.
4 # This program is free software; you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation; either version 2, or (at your option)
7 # any later version.
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
14 # You should have received a copy of the GNU General Public License
15 # along with this program. If not, see <http://www.gnu.org/licenses/>.
17 # Test for valid prefix/primary combinations.
18 # See also test `primary-prefix-invalid-couples.test'.
20 . ./defs || Exit 1
22 set -e
24 cat >> configure.in <<'END'
25 AC_PROG_CC
26 AM_PROG_AR
27 AC_PROG_RANLIB
28 AC_PROG_LIBTOOL
29 AM_PROG_GCJ
30 AM_PATH_PYTHON
31 AM_PATH_LISPDIR
32 END
34 # Fake libtool availability.
35 : > ltmain.sh
36 : > config.sub
37 : > config.guess
38 cat > acinclude.m4 <<'END'
39 AC_DEFUN([AC_PROG_LIBTOOL],
40 [AC_SUBST([LIBTOOL], [:])])
41 END
43 # Other required files.
44 echo '@setfilename foo' > foo.texi
45 : > texinfo.tex
46 : > py-compile
47 : > elisp-comp
48 : > ar-lib
50 # Setup Makefile.am.
52 : > Makefile.am
54 for p in bin sbin libexec pkglibexec; do
55 echo "${p}_PROGRAMS = prog-$p" >> Makefile.am
56 done
58 for p in lib pkglib; do
59 echo "${p}_LIBRARIES = libs-$p.a" >> Makefile.am
60 echo "${p}_LTLIBRARIES = libd-$p.la" >> Makefile.am
61 done
63 for p in bin sbin libexec pkgdata; do
64 echo "${p}_SCRIPTS = $p.sh" >> Makefile.am
65 done
67 for p in data dataroot pkgdata doc html dvi pdf ps sysconf \
68 sharedstate localstate lisp; do
69 echo "${p}_DATA = $p.dat" >> Makefile.am
70 done
72 for p in include oldinclude pkginclude; do
73 echo "${p}_HEADERS = $p.h" >> Makefile.am
74 done
76 for p in man man1 man2 man3 man4 man5 man6 man7 man8 man9; do
77 echo "${p}_MANS = bar.$p"
78 done
80 echo "info_TEXINFOS = foo.texi" >> Makefile.am
81 echo "lisp_LISP = foo.el" >> Makefile.am
82 echo "python_PYTHON = foo.py" >> Makefile.am
83 echo "java_JAVA = foo.java" >> Makefile.am
85 awk '{print NR ":" $0}' Makefile.am # For debugging.
87 # Go with the tests.
89 $ACLOCAL
90 $AUTOMAKE