maint: Update HACKING
[automake.git] / t / java-sources.sh
blobd7dbcb2ca6f8d50767610ceac84846a8219da211
1 #! /bin/sh
2 # Copyright (C) 2011-2017 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 # Test definition of automake-generated private Makefile variable
18 # '$(am__java_sources)'.
20 . test-init.sh
22 cat >> configure.ac << 'END'
23 AC_OUTPUT
24 END
26 cat > Makefile.am << 'END'
27 foodir = $(prefix)
29 foo_JAVA = a.java
30 dist_foo_JAVA = b.java
31 nodist_foo_JAVA = c.java
32 nobase_foo_JAVA = d.java
33 nobase_dist_foo_JAVA = e.java
34 nobase_nodist_foo_JAVA = f.java
36 .PHONY: debug
37 debug:
38 @echo 'am__java_sources: "$(am__java_sources)"'
39 got:
40 @lst='$(am__java_sources)'; \
41 for f in $$lst; do echo $$f; done | sort > $@
42 END
44 $ACLOCAL
45 $AUTOMAKE
46 $AUTOCONF
48 cat > exp << 'END'
49 a.java
50 b.java
51 c.java
52 d.java
53 e.java
54 f.java
55 END
57 ./configure
58 $MAKE debug
59 $MAKE got
61 cat got
62 cat exp
63 diff exp got