doc: update Vala documentation
[automake.git] / t / subobj-indir-pr13928.sh
blob40e2ec1512c03f2b39a3af1f74e178abf7a42ff4
1 #! /bin/sh
2 # Copyright (C) 2013-2024 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 <https://www.gnu.org/licenses/>.
17 # Expose part of Automake bug#13928: config.status generates broken
18 # makefiles if the subdir-objects option is used and a _SOURCES
19 # variable lists sources whose directory part is specified as a
20 # make variable ("foo_SOURCES = $(src)/foo.c").
22 required=cc
23 . test-init.sh
25 cat >> configure.ac << 'END'
26 AC_PROG_CC
27 AM_PROG_CC_C_O
28 AC_OUTPUT
29 END
31 cat > Makefile.am <<'END'
32 AUTOMAKE_OPTIONS = subdir-objects
33 src = s
34 bin_PROGRAMS = foo
35 foo_SOURCES = $(src)/foo.c
36 END
38 mkdir s
39 echo 'int main(void) { return 0; }' > s/foo.c
41 $ACLOCAL
42 $AUTOCONF
43 $AUTOMAKE -a
45 ./configure
46 $MAKE
47 test -f s/.deps/foo.Po
48 find . | $FGREP '$(src)' && exit 1
49 $MAKE distcheck