maint: Update HACKING
[automake.git] / t / java-noinst.sh
blobd0075b158f970216d9838d31d0377305fafc6203
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 # Make sure that noinst_JAVA causes generated *.class files not to
18 # be installed.
20 required=javac
21 . test-init.sh
23 cat >> configure.ac << 'END'
24 AC_OUTPUT
25 END
27 cat > Makefile.am <<'END'
28 noinst_JAVA = 1.java
29 dist_noinst_JAVA = 2.java
30 nodist_noinst_JAVA = 3.java
31 nobase_noinst_JAVA = 4.java
32 nobase_dist_noinst_JAVA = 5.java
33 nobase_nodist_noinst_JAVA = 6.java
34 END
36 for i in 1 2 3 4 5 6; do
37 echo "class Class$i {}" > $i.java
38 done
40 $ACLOCAL
41 $AUTOMAKE
42 $AUTOCONF
44 ./configure --prefix="$(pwd)/_inst"
46 $MAKE
47 ls -l
48 for i in 1 2 3 4 5 6; do
49 test -f Class$i.class
50 done
52 $MAKE install
53 test -d _inst && { ls -l _inst; exit 1; }