| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147 | #! /bin/sh# Copyright (C) 2001-2017 Free Software Foundation, Inc.## This program is free software; you can redistribute it and/or modify# it under the terms of the GNU General Public License as published by# the Free Software Foundation; either version 2, or (at your option)# any later version.## This program is distributed in the hope that it will be useful,# but WITHOUT ANY WARRANTY; without even the implied warranty of# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the# GNU General Public License for more details.## You should have received a copy of the GNU General Public License# along with this program.  If not, see <http://www.gnu.org/licenses/>.# Make sure nobase_* works.required=cc. test-init.shcat >> configure.ac <<'EOF'AC_PROG_CCAM_PROG_ARAC_PROG_RANLIBAC_OUTPUTEOFcat > Makefile.am << 'EOF'foodir = $(prefix)/foofooexecdir = $(prefix)/foofoo_HEADERS = sub/base.h sub/base-gen.hnobase_foo_HEADERS = sub/nobase.h sub/nobase-gen.hdist_foo_DATA = sub/base.dat sub/base-gen.datnobase_dist_foo_DATA = sub/nobase.dat sub/nobase-gen.datdist_fooexec_SCRIPTS = sub/base.sh sub/base-gen.shnobase_dist_fooexec_SCRIPTS = sub/nobase.sh sub/nobase-gen.shfooexec_PROGRAMS = sub/basenobase_fooexec_PROGRAMS = sub/nobasesub_base_SOURCES = source.csub_nobase_SOURCES = source.cfooexec_LIBRARIES = sub/libbase.anobase_fooexec_LIBRARIES = sub/libnobase.asub_libbase_a_SOURCES = source.csub_libnobase_a_SOURCES = source.cgenerated_files = sub/base-gen.h sub/nobase-gen.h sub/base-gen.dat \sub/nobase-gen.dat sub/base-gen.sh sub/nobase-gen.sh$(generated_files):	$(MKDIR_P) sub	echo "generated file $@" > $@CLEANFILES = $(generated_files)test-install-data: install-data	test   -f inst/foo/sub/nobase.h	test ! -f inst/foo/nobase.h	test   -f inst/foo/sub/nobase-gen.h	test ! -f inst/foo/nobase-gen.h	test   -f inst/foo/base.h	test   -f inst/foo/base-gen.h	test   -f inst/foo/sub/nobase.dat	test ! -f inst/foo/nobase.dat	test   -f inst/foo/sub/nobase-gen.dat	test ! -f inst/foo/nobase-gen.dat	test   -f inst/foo/base.dat	test   -f inst/foo/base-gen.dat	test ! -f inst/foo/sub/pnobase.sh	test ! -f inst/foo/sub/pnobase-gen.sh	test ! -f inst/foo/pbase.sh	test ! -f inst/foo/pbase-gen.sh	test ! -f inst/foo/sub/pnobase$(EXEEXT)	test ! -f inst/foo/pbase$(EXEEXT)	test ! -f inst/foo/sub/libnobase.a	test ! -f inst/foo/libbase.atest-install-exec: install-exec	test   -f inst/foo/sub/pnobase.sh	test ! -f inst/foo/pnobase.sh	test   -f inst/foo/sub/pnobase-gen.sh	test ! -f inst/foo/pnobase-gen.sh	test   -f inst/foo/pbase.sh	test   -f inst/foo/pbase-gen.sh	test   -f inst/foo/sub/pnobase$(EXEEXT)	test ! -f inst/foo/pnobase$(EXEEXT)	test   -f inst/foo/pbase$(EXEEXT)	test   -f inst/foo/sub/libnobase.a	test ! -f inst/foo/libnobase.a	test   -f inst/foo/libbase.a.PHONY: test-install-exec test-install-dataEOFmkdir sub: > sub/base.h: > sub/nobase.h: > sub/base.dat: > sub/nobase.dat: > sub/base.sh: > sub/nobase.shcat >source.c <<'EOF'intmain (int argc, char *argv[]){  return 0;}EOFcp source.c source2.crm -f install-sh$ACLOCAL$AUTOCONF$AUTOMAKE -a --copy./configure --prefix "$(pwd)/inst" --program-prefix=p$MAKE$MAKE test-install-data$MAKE test-install-exec$MAKE uninstalltest $(find inst/foo -type f -print | wc -l) -eq 0$MAKE install-strip# Likewise, in a VPATH build.$MAKE uninstall$MAKE distcleanmkdir buildcd build../configure --prefix "$(pwd)/inst" --program-prefix=p$MAKE$MAKE test-install-data$MAKE test-install-exec$MAKE uninstalltest $(find inst/foo -type f -print | wc -l) -eq 0:
 |