| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 | #! /bin/sh# Copyright (C) 2003-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/>.# Test support for DJGPP's .iNN info files.required=makeinfo. test-init.shecho AC_OUTPUT >> configure.accat > Makefile.am << 'END'info_TEXINFOS = main.texiENDcat > main.texi << 'END'\input texinfo@setfilename main.info@settitle main@node TopHello walls.@byeEND$ACLOCAL$AUTOMAKE --add-missing$AUTOCONF./configure "--infodir=$(pwd)/_inst"$MAKE# Make sure .iNN files are installed.: > main.i1: > main.i21$MAKE installtest -f _inst/main.i1test -f _inst/main.i21# They should be uninstalled too.$MAKE uninstalltest ! -e _inst/main.i1test ! -e _inst/main.i21# Make sure rebuild rules erase old .iNN files when they run makeinfo.$sleeptouch main.texitest -f main.i1test -f main.i21$MAKEtest ! -e main.i1test ! -e main.i21# Finally, we also want them erased by maintainer-clean.: > main.i7: > main.i39$MAKE maintainer-cleantest ! -e main.i7test ! -e main.i39:
 |