| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 | #! /bin/sh# Copyright (C) 2002-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/>.# Like the true/false example from the manual,# with one extra indirection in the sources (PR/315), and# use of _CPPFLAGS (PR/337).required='cc native'. test-init.shcat >> configure.ac << 'END'AC_PROG_CCAC_OUTPUTEND# Using a separate variable to hold all the sources for a program is# common when building many flavors of this program, each with# different flags.cat > Makefile.am << 'END'TRUESOURCE = true.cbin_PROGRAMS = false truetrue_SOURCES = $(TRUESOURCE)true_CPPFLAGS = -DEXIT_CODE=0false_SOURCES = $(TRUESOURCE)false_CPPFLAGS = -DEXIT_CODE=1ENDcat > true.c << 'END'int main (void){   return EXIT_CODE;}END$ACLOCAL$AUTOCONF$AUTOMAKE -a./configure$MAKE./true./false && exit 1objext=$(sed -n -e 's/^OBJEXT = //p' < Makefile)test -f ./true-true.$objexttest -f ./false-true.$objext:
 |