in reply to installing GD::Graph on mac osx 10.4.11

Did you follow the installation instructions? Specifically,
1. Ensure that you are using GNU Make ------------------------------------- The FreeType build system _exclusively_ works with GNU Make. You will not be able to compile the library with the instructions below using any other alternative (including BSD Make). Check that you have GNU make by running the command: make -v This should dump some text that begins with: GNU Make <version number> Copyright (C) <year> Free Software Foundation Inc. Note that version 3.80 or higher is *required* or the build will fail. It is also fine to have GNU Make under another name (e.g. 'gmake') if you use the GNUMAKE variable as described below. As a special exception, 'makepp' can also be used to build FreeType 2. See the file docs/MAKEPP for details.

Seeing as MacOS is derived from some BSD (right?), maybe you're using the BSD make you're warned against using.

Replies are listed 'Best First'.
Re^2: installing GD::Graph on mac osx 10.4.11
by 7stud (Deacon) on May 01, 2010 at 08:25 UTC

    I checked that before starting the install:

    $ make -v GNU Make 3.80 Copyright (C) 2002 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

    I don't know if this will help, but here is the configure script:

    #!/bin/sh # # Copyright 2002, 2003, 2004, 2005, 2006, 2008, 2009 by # David Turner, Robert Wilhelm, and Werner Lemberg. # # This file is part of the FreeType project, and may only be used, mod +ified, # and distributed under the terms of the FreeType project license, # LICENSE.TXT. By continuing to use, modify, or distribute this file +you # indicate that you have read the license and understand and accept it # fully. # # # Call the `configure' script located in `builds/unix'. # rm -f config.mk builds/unix/unix-def.mk builds/unix/unix-cc.mk if test "x$GNUMAKE" = x; then GNUMAKE=make fi if test -z "`$GNUMAKE -v 2>/dev/null | grep GNU`"; then if test -z "`$GNUMAKE -v 2>/dev/null | grep makepp`"; then echo "GNU make (>= 3.80) or makepp (>= 1.19) is required to build +FreeType2." >&2 echo "Please try" >&2 echo " \`GNUMAKE=<GNU make command name> $0'." >&2 echo "or >&2" echo " \`GNUMAKE=\"makepp --norc-substitution\" $0'." >&2 exit 1 fi fi # Get `dirname' functionality. This is taken and adapted from autocon +f's # m4sh.m4 (_AS_EXPR_PREPARE, AS_DIRNAME_EXPR, and AS_DIRNAME_SED). if expr a : '\(a\)' >/dev/null 2>&1; then ft_expr=expr else ft_expr=false fi ft2_dir=`(dirname "$0") 2>/dev/null || $ft_expr X"$0" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$0" : 'X\(//\)[^/]' \| \ X"$0" : 'X\(//\)$' \| \ X"$0" : 'X\(/\)' \| \ . : '\(.\)' 2>/dev/null || echo X"$0" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` abs_curr_dir=`pwd` abs_ft2_dir=`cd "$ft2_dir" && pwd` # `--srcdir=' option can override abs_ft2_dir if test $# -gt 0; then for x in "$@"; do case x"$x" in x--srcdir=*) abs_ft2_dir=`echo $x | sed 's/^--srcdir=//'` ;; esac done fi # build a dummy Makefile if we are not building in the source tree if test "$abs_curr_dir" != "$abs_ft2_dir"; then mkdir reference if test ! -r $abs_curr_dir/modules.cfg; then echo "Copying \`modules.cfg'" cp $abs_ft2_dir/modules.cfg $abs_curr_dir fi echo "Generating \`Makefile'" echo "TOP_DIR := $abs_ft2_dir" > Makefile echo "OBJ_DIR := $abs_curr_dir" >> Makefile echo "OBJ_BUILD := \$(OBJ_DIR)" >> Makefile echo "DOC_DIR := \$(OBJ_DIR)/reference" >> Makefile echo "LIBTOOL := \$(OBJ_DIR)/libtool" >> Makefile echo "ifndef FT2DEMOS" >> Makefile echo " include \$(TOP_DIR)/Makefile" >> Makefile echo "else" >> Makefile echo " TOP_DIR_2 := \$(TOP_DIR)/../ft2demos" >> Makefile echo " PROJECT := freetype" >> Makefile echo " CONFIG_MK := \$(OBJ_DIR)/config.mk" >> Makefile echo " include \$(TOP_DIR_2)/Makefile" >> Makefile echo "endif" >> Makefile fi # call make CFG= # work around zsh bug which doesn't like `${1+"$@"}' case $# in 0) ;; *) for x in "$@"; do case x"$x" in x--srcdir=* ) CFG="$CFG '$x'/builds/unix" ;; *) CFG="$CFG '$x'" ;; esac done ;; esac CFG=$CFG $GNUMAKE setup unix # eof

      Maybe you could request some debugging info to narrow down on the issue. I would start with changing the configure script:

      #!/bin/sh -x ... CFG=$CFG $GNUMAKE -d setup unix

      i.e., add the -x (to see what the shell executes) and -d (for make debug info). Better redirect the output, as - under normal circumstances - it'll be a few hundred kbytes...

        GNU Make 3.80 Copyright (C) 2002 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. Reading makefiles... Updating makefiles.... Considering target file `GNUmakefile'. File `GNUmakefile' does not exist. Looking for an implicit rule for `GNUmakefile'. Trying pattern rule with stem `GNUmakefile'. Trying implicit prerequisite `GNUmakefile.o'. Trying pattern rule with stem `GNUmakefile'. Trying implicit prerequisite `GNUmakefile.c'. Trying pattern rule with stem `GNUmakefile'. Trying implicit prerequisite `GNUmakefile.cc'. Trying pattern rule with stem `GNUmakefile'. Trying implicit prerequisite `GNUmakefile.C'. Trying pattern rule with stem `GNUmakefile'. Trying implicit prerequisite `GNUmakefile.cpp'. Trying pattern rule with stem `GNUmakefile'. Trying implicit prerequisite `GNUmakefile.p'. Trying pattern rule with stem `GNUmakefile'. Trying implicit prerequisite `GNUmakefile.f'. Trying pattern rule with stem `GNUmakefile'. Trying implicit prerequisite `GNUmakefile.F'. Trying pattern rule with stem `GNUmakefile'. Trying implicit prerequisite `GNUmakefile.m'. Trying pattern rule with stem `GNUmakefile'. Trying implicit prerequisite `GNUmakefile.r'. Trying pattern rule with stem `GNUmakefile'. Trying implicit prerequisite `GNUmakefile.s'. Trying pattern rule with stem `GNUmakefile'. Trying implicit prerequisite `GNUmakefile.S'. Trying pattern rule with stem `GNUmakefile'. Trying implicit prerequisite `GNUmakefile.mod'. Trying pattern rule with stem `GNUmakefile'. Trying implicit prerequisite `GNUmakefile.sh'. Trying pattern rule with stem `GNUmakefile'. Trying implicit prerequisite `GNUmakefile,v'. Trying pattern rule with stem `GNUmakefile'. Trying implicit prerequisite `RCS/GNUmakefile,v'. Trying pattern rule with stem `GNUmakefile'. Trying implicit prerequisite `RCS/GNUmakefile'. Trying pattern rule with stem `GNUmakefile'. Trying implicit prerequisite `s.GNUmakefile'. Trying pattern rule with stem `GNUmakefile'. Trying implicit prerequisite `SCCS/s.GNUmakefile'. Trying pattern rule with stem `GNUmakefile'. Trying implicit prerequisite `GNUmakefile.o'. Looking for a rule with intermediate file `GNUmakefile.o'. Avoiding implicit rule recursion. Trying pattern rule with stem `GNUmakefile'. Trying implicit prerequisite `GNUmakefile.c'. Trying pattern rule with stem `GNUmakefile'. Trying implicit prerequisite `GNUmakefile.cc'. Trying pattern rule with stem `GNUmakefile'. Trying implicit prerequisite `GNUmakefile.C'. Trying pattern rule with stem `GNUmakefile'. Trying implicit prerequisite `GNUmakefile.cpp'. Trying pattern rule with stem `GNUmakefile'. Trying implicit prerequisite `GNUmakefile.p'. Trying pattern rule with stem `GNUmakefile'. Trying implicit prerequisite `GNUmakefile.f'. Trying pattern rule with stem `GNUmakefile'. Trying implicit prerequisite `GNUmakefile.F'. Trying pattern rule with stem `GNUmakefile'. Trying implicit prerequisite `GNUmakefile.m'. Trying pattern rule with stem `GNUmakefile'. Trying implicit prerequisite `GNUmakefile.r'. Trying pattern rule with stem `GNUmakefile'. Trying implicit prerequisite `GNUmakefile.s'. Trying pattern rule with stem `GNUmakefile'. Trying implicit prerequisite `GNUmakefile.S'. Trying pattern rule with stem `GNUmakefile'. Trying implicit prerequisite `GNUmakefile.mod'. Trying pattern rule with stem `GNUmakefile.o'. Trying implicit prerequisite `GNUmakefile.o,v'. Trying pattern rule with stem `GNUmakefile.o'. Trying implicit prerequisite `RCS/GNUmakefile.o,v'. Trying pattern rule with stem `GNUmakefile.o'. Trying implicit prerequisite `RCS/GNUmakefile.o'. Trying pattern rule with stem `GNUmakefile.o'. Trying implicit prerequisite `s.GNUmakefile.o'. Trying pattern rule with stem `GNUmakefile.o'. Trying implicit prerequisite `SCCS/s.GNUmakefile.o'. Trying pattern rule with stem `GNUmakefile'. Trying implicit prerequisite `GNUmakefile.c'. Looking for a rule with intermediate file `GNUmakefile.c'. Avoiding implicit rule recursion. Avoiding implicit rule recursion. Trying pattern rule with stem `GNUmakefile'. Trying implicit prerequisite `GNUmakefile.y'. Trying pattern rule with stem `GNUmakefile'. Trying implicit prerequisite `GNUmakefile.l'. Trying pattern rule with stem `GNUmakefile'. Trying implicit prerequisite `GNUmakefile.w'. Trying pattern rule with stem `GNUmakefile'. Trying implicit prerequisite `GNUmakefile.w'. Trying pattern rule with stem `GNUmakefile.c'. Trying implicit prerequisite `GNUmakefile.c,v'. Trying pattern rule with stem `GNUmakefile.c'. Trying implicit prerequisite `RCS/GNUmakefile.c,v'. Trying pattern rule with stem `GNUmakefile.c'. Trying implicit prerequisite `RCS/GNUmakefile.c'. Trying pattern rule with stem `GNUmakefile.c'. Trying implicit prerequisite `s.GNUmakefile.c'. Trying pattern rule with stem `GNUmakefile.c'. Trying implicit prerequisite `SCCS/s.GNUmakefile.c'. Trying pattern rule with stem `GNUmakefile'. Trying implicit prerequisite `GNUmakefile.y'. Looking for a rule with intermediate file `GNUmakefile.y'. Avoiding implicit rule recursion. Avoiding implicit rule recursion. Avoiding implicit rule recursion. Trying pattern rule with stem `GNUmakefile.y'. Trying implicit prerequisite `GNUmakefile.y,v'. Trying pattern rule with stem `GNUmakefile.y'. Trying implicit prerequisite `RCS/GNUmakefile.y,v'. Trying pattern rule with stem `GNUmakefile.y'. Trying implicit prerequisite `RCS/GNUmakefile.y'. Trying pattern rule with stem `GNUmakefile.y'. Trying implicit prerequisite `s.GNUmakefile.y'. Trying pattern rule with stem `GNUmakefile.y'. Trying implicit prerequisite `SCCS/s.GNUmakefile.y'. Trying pattern rule with stem `GNUmakefile'. Trying implicit prerequisite `GNUmakefile.l'. Looking for a rule with intermediate file `GNUmakefile.l'. Avoiding implicit rule recursion. Avoiding implicit rule recursion. Avoiding implicit rule recursion. Trying pattern rule with stem `GNUmakefile.l'. Trying implicit prerequisite `GNUmakefile.l,v'. Trying pattern rule with stem `GNUmakefile.l'. Trying implicit prerequisite `RCS/GNUmakefile.l,v'. Trying pattern rule with stem `GNUmakefile.l'. Trying implicit prerequisite `RCS/GNUmakefile.l'. Trying pattern rule with stem `GNUmakefile.l'. Trying implicit prerequisite `s.GNUmakefile.l'. Trying pattern rule with stem `GNUmakefile.l'. Trying implicit prerequisite `SCCS/s.GNUmakefile.l'. Trying pattern rule with stem `GNUmakefile'. Trying implicit prerequisite `GNUmakefile.w'. Looking for a rule with intermediate file `GNUmakefile.w'. Avoiding implicit rule recursion. Avoiding implicit rule recursion. Avoiding implicit rule recursion. Trying pattern rule with stem `GNUmakefile.w'. Trying implicit prerequisite `GNUmakefile.w,v'. Trying pattern rule with stem `GNUmakefile.w'. Trying implicit prerequisite `RCS/GNUmakefile.w,v'. Trying pattern rule with stem `GNUmakefile.w'. Trying implicit prerequisite `RCS/GNUmakefile.w'. Trying pattern rule with stem `GNUmakefile.w'. Trying implicit prerequisite `s.GNUmakefile.w'. Trying pattern rule with stem `GNUmakefile.w'. Trying implicit prerequisite `SCCS/s.GNUmakefile.w'. Trying pattern rule with stem `GNUmakefile'. Rejecting impossible implicit prerequisite `GNUmakefile.w'. Trying pattern rule with stem `GNUmakefile'. Trying implicit prerequisite `GNUmakefile.cc'. Looking for a rule with intermediate file `GNUmakefile.cc'. Avoiding implicit rule recursion. Avoiding implicit rule recursion. Trying pattern rule with stem `GNUmakefile.cc'. Trying implicit prerequisite `GNUmakefile.cc,v'. Trying pattern rule with stem `GNUmakefile.cc'. Trying implicit prerequisite `RCS/GNUmakefile.cc,v'. Trying pattern rule with stem `GNUmakefile.cc'. Trying implicit prerequisite `RCS/GNUmakefile.cc'. Trying pattern rule with stem `GNUmakefile.cc'. Trying implicit prerequisite `s.GNUmakefile.cc'. Trying pattern rule with stem `GNUmakefile.cc'. Trying implicit prerequisite `SCCS/s.GNUmakefile.cc'. Trying pattern rule with stem `GNUmakefile'. Trying implicit prerequisite `GNUmakefile.C'. Looking for a rule with intermediate file `GNUmakefile.C'. Avoiding implicit rule recursion. Avoiding implicit rule recursion. Trying pattern rule with stem `GNUmakefile.C'. Trying implicit prerequisite `GNUmakefile.C,v'. Trying pattern rule with stem `GNUmakefile.C'. Trying implicit prerequisite `RCS/GNUmakefile.C,v'. Trying pattern rule with stem `GNUmakefile.C'. Trying implicit prerequisite `RCS/GNUmakefile.C'. Trying pattern rule with stem `GNUmakefile.C'. Trying implicit prerequisite `s.GNUmakefile.C'. Trying pattern rule with stem `GNUmakefile.C'. Trying implicit prerequisite `SCCS/s.GNUmakefile.C'. Trying pattern rule with stem `GNUmakefile'. Trying implicit prerequisite `GNUmakefile.cpp'. Looking for a rule with intermediate file `GNUmakefile.cpp'. Avoiding implicit rule recursion. Avoiding implicit rule recursion. Trying pattern rule with stem `GNUmakefile.cpp'. Trying implicit prerequisite `GNUmakefile.cpp,v'. Trying pattern rule with stem `GNUmakefile.cpp'. Trying implicit prerequisite `RCS/GNUmakefile.cpp,v'. Trying pattern rule with stem `GNUmakefile.cpp'. Trying implicit prerequisite `RCS/GNUmakefile.cpp'. Trying pattern rule with stem `GNUmakefile.cpp'. Trying implicit prerequisite `s.GNUmakefile.cpp'. Trying pattern rule with stem `GNUmakefile.cpp'. Trying implicit prerequisite `SCCS/s.GNUmakefile.cpp'. Trying pattern rule with stem `GNUmakefile'. Trying implicit prerequisite `GNUmakefile.p'. Looking for a rule with intermediate file `GNUmakefile.p'. Avoiding implicit rule recursion. Avoiding implicit rule recursion. Trying pattern rule with stem `GNUmakefile'. Trying implicit prerequisite `GNUmakefile.web'. Trying pattern rule with stem `GNUmakefile.p'. Trying implicit prerequisite `GNUmakefile.p,v'. Trying pattern rule with stem `GNUmakefile.p'. Trying implicit prerequisite `RCS/GNUmakefile.p,v'. Trying pattern rule with stem `GNUmakefile.p'. Trying implicit prerequisite `RCS/GNUmakefile.p'. Trying pattern rule with stem `GNUmakefile.p'. Trying implicit prerequisite `s.GNUmakefile.p'. Trying pattern rule with stem `GNUmakefile.p'. Trying implicit prerequisite `SCCS/s.GNUmakefile.p'. Trying pattern rule with stem `GNUmakefile'. Trying implicit prerequisite `GNUmakefile.web'. Looking for a rule with intermediate file `GNUmakefile.web'. Avoiding implicit rule recursion. Avoiding implicit rule recursion. Avoiding implicit rule recursion. Trying pattern rule with stem `GNUmakefile.web'. Trying implicit prerequisite `GNUmakefile.web,v'. Trying pattern rule with stem `GNUmakefile.web'. Trying implicit prerequisite `RCS/GNUmakefile.web,v'. Trying pattern rule with stem `GNUmakefile.web'. Trying implicit prerequisite `RCS/GNUmakefile.web'. Trying pattern rule with stem `GNUmakefile.web'. Trying implicit prerequisite `s.GNUmakefile.web'. Trying pattern rule with stem `GNUmakefile.web'. Trying implicit prerequisite `SCCS/s.GNUmakefile.web'. Trying pattern rule with stem `GNUmakefile'. Trying implicit prerequisite `GNUmakefile.f'. Looking for a rule with intermediate file `GNUmakefile.f'. Avoiding implicit rule recursion. Avoiding implicit rule recursion. Trying pattern rule with stem `GNUmakefile'. Trying implicit prerequisite `GNUmakefile.F'. Trying pattern rule with stem `GNUmakefile'. Trying implicit prerequisite `GNUmakefile.r'. Trying pattern rule with stem `GNUmakefile.f'. Trying implicit prerequisite `GNUmakefile.f,v'. Trying pattern rule with stem `GNUmakefile.f'. Trying implicit prerequisite `RCS/GNUmakefile.f,v'. Trying pattern rule with stem `GNUmakefile.f'. Trying implicit prerequisite `RCS/GNUmakefile.f'. Trying pattern rule with stem `GNUmakefile.f'. Trying implicit prerequisite `s.GNUmakefile.f'. Trying pattern rule with stem `GNUmakefile.f'. Trying implicit prerequisite `SCCS/s.GNUmakefile.f'. Trying pattern rule with stem `GNUmakefile'. Trying implicit prerequisite `GNUmakefile.F'. Looking for a rule with intermediate file `GNUmakefile.F'. Avoiding implicit rule recursion. Avoiding implicit rule recursion. Avoiding implicit rule recursion. Trying pattern rule with stem `GNUmakefile.F'. Trying implicit prerequisite `GNUmakefile.F,v'. Trying pattern rule with stem `GNUmakefile.F'. Trying implicit prerequisite `RCS/GNUmakefile.F,v'. Trying pattern rule with stem `GNUmakefile.F'. Trying implicit prerequisite `RCS/GNUmakefile.F'. Trying pattern rule with stem `GNUmakefile.F'. Trying implicit prerequisite `s.GNUmakefile.F'. Trying pattern rule with stem `GNUmakefile.F'. Trying implicit prerequisite `SCCS/s.GNUmakefile.F'. Trying pattern rule with stem `GNUmakefile'. Trying implicit prerequisite `GNUmakefile.r'. Looking for a rule with intermediate file `GNUmakefile.r'. Avoiding implicit rule recursion. Avoiding implicit rule recursion. Avoiding implicit rule recursion. Trying pattern rule with stem `GNUmakefile'. Rejecting impossible implicit prerequisite `GNUmakefile.l'. Trying pattern rule with stem `GNUmakefile.r'. Trying implicit prerequisite `GNUmakefile.r,v'. Trying pattern rule with stem `GNUmakefile.r'. Trying implicit prerequisite `RCS/GNUmakefile.r,v'. Trying pattern rule with stem `GNUmakefile.r'. Trying implicit prerequisite `RCS/GNUmakefile.r'. Trying pattern rule with stem `GNUmakefile.r'. Trying implicit prerequisite `s.GNUmakefile.r'. Trying pattern rule with stem `GNUmakefile.r'. Trying implicit prerequisite `SCCS/s.GNUmakefile.r'. Trying pattern rule with stem `GNUmakefile'. Rejecting impossible implicit prerequisite `GNUmakefile.F'. Trying pattern rule with stem `GNUmakefile'. Trying implicit prerequisite `GNUmakefile.m'. Looking for a rule with intermediate file `GNUmakefile.m'. Avoiding implicit rule recursion. Avoiding implicit rule recursion. Trying pattern rule with stem `GNUmakefile'. Trying implicit prerequisite `GNUmakefile.ym'. Trying pattern rule with stem `GNUmakefile'. Trying implicit prerequisite `GNUmakefile.lm'. Trying pattern rule with stem `GNUmakefile.m'. Trying implicit prerequisite `GNUmakefile.m,v'. Trying pattern rule with stem `GNUmakefile.m'. Trying implicit prerequisite `RCS/GNUmakefile.m,v'. Trying pattern rule with stem `GNUmakefile.m'. Trying implicit prerequisite `RCS/GNUmakefile.m'. Trying pattern rule with stem `GNUmakefile.m'. Trying implicit prerequisite `s.GNUmakefile.m'. Trying pattern rule with stem `GNUmakefile.m'. Trying implicit prerequisite `SCCS/s.GNUmakefile.m'. Trying pattern rule with stem `GNUmakefile'. Trying implicit prerequisite `GNUmakefile.ym'. Looking for a rule with intermediate file `GNUmakefile.ym'. Avoiding implicit rule recursion. Avoiding implicit rule recursion. Avoiding implicit rule recursion. Trying pattern rule with stem `GNUmakefile.ym'. Trying implicit prerequisite `GNUmakefile.ym,v'. Trying pattern rule with stem `GNUmakefile.ym'. Trying implicit prerequisite `RCS/GNUmakefile.ym,v'. Trying pattern rule with stem `GNUmakefile.ym'. Trying implicit prerequisite `RCS/GNUmakefile.ym'. Trying pattern rule with stem `GNUmakefile.ym'. Trying implicit prerequisite `s.GNUmakefile.ym'. Trying pattern rule with stem `GNUmakefile.ym'. Trying implicit prerequisite `SCCS/s.GNUmakefile.ym'. Trying pattern rule with stem `GNUmakefile'. Trying implicit prerequisite `GNUmakefile.lm'. Looking for a rule with intermediate file `GNUmakefile.lm'. Avoiding implicit rule recursion. Avoiding implicit rule recursion. Avoiding implicit rule recursion. Trying pattern rule with stem `GNUmakefile.lm'. Trying implicit prerequisite `GNUmakefile.lm,v'. Trying pattern rule with stem `GNUmakefile.lm'. Trying implicit prerequisite `RCS/GNUmakefile.lm,v'. Trying pattern rule with stem `GNUmakefile.lm'. Trying implicit prerequisite `RCS/GNUmakefile.lm'. Trying pattern rule with stem `GNUmakefile.lm'. Trying implicit prerequisite `s.GNUmakefile.lm'. Trying pattern rule with stem `GNUmakefile.lm'. Trying implicit prerequisite `SCCS/s.GNUmakefile.lm'. Trying pattern rule with stem `GNUmakefile'. Rejecting impossible implicit prerequisite `GNUmakefile.r'. Trying pattern rule with stem `GNUmakefile'. Trying implicit prerequisite `GNUmakefile.s'. Looking for a rule with intermediate file `GNUmakefile.s'. Avoiding implicit rule recursion. Avoiding implicit rule recursion. Trying pattern rule with stem `GNUmakefile'. Trying implicit prerequisite `GNUmakefile.S'. Trying pattern rule with stem `GNUmakefile.s'. Trying implicit prerequisite `GNUmakefile.s,v'. Trying pattern rule with stem `GNUmakefile.s'. Trying implicit prerequisite `RCS/GNUmakefile.s,v'. Trying pattern rule with stem `GNUmakefile.s'. Trying implicit prerequisite `RCS/GNUmakefile.s'. Trying pattern rule with stem `GNUmakefile.s'. Trying implicit prerequisite `s.GNUmakefile.s'. Trying pattern rule with stem `GNUmakefile.s'. Trying implicit prerequisite `SCCS/s.GNUmakefile.s'. Trying pattern rule with stem `GNUmakefile'. Trying implicit prerequisite `GNUmakefile.S'. Looking for a rule with intermediate file `GNUmakefile.S'. Avoiding implicit rule recursion. Avoiding implicit rule recursion. Avoiding implicit rule recursion. Trying pattern rule with stem `GNUmakefile.S'. Trying implicit prerequisite `GNUmakefile.S,v'. Trying pattern rule with stem `GNUmakefile.S'. Trying implicit prerequisite `RCS/GNUmakefile.S,v'. Trying pattern rule with stem `GNUmakefile.S'. Trying implicit prerequisite `RCS/GNUmakefile.S'. Trying pattern rule with stem `GNUmakefile.S'. Trying implicit prerequisite `s.GNUmakefile.S'. Trying pattern rule with stem `GNUmakefile.S'. Trying implicit prerequisite `SCCS/s.GNUmakefile.S'. Trying pattern rule with stem `GNUmakefile'. Rejecting impossible implicit prerequisite `GNUmakefile.S'. Trying pattern rule with stem `GNUmakefile'. Trying implicit prerequisite `GNUmakefile.mod'. Looking for a rule with intermediate file `GNUmakefile.mod'. Avoiding implicit rule recursion. Avoiding implicit rule recursion. Trying pattern rule with stem `GNUmakefile.mod'. Trying implicit prerequisite `GNUmakefile.mod,v'. Trying pattern rule with stem `GNUmakefile.mod'. Trying implicit prerequisite `RCS/GNUmakefile.mod,v'. Trying pattern rule with stem `GNUmakefile.mod'. Trying implicit prerequisite `RCS/GNUmakefile.mod'. Trying pattern rule with stem `GNUmakefile.mod'. Trying implicit prerequisite `s.GNUmakefile.mod'. Trying pattern rule with stem `GNUmakefile.mod'. Trying implicit prerequisite `SCCS/s.GNUmakefile.mod'. Trying pattern rule with stem `GNUmakefile'. Rejecting impossible implicit prerequisite `GNUmakefile.c'. Trying pattern rule with stem `GNUmakefile'. Rejecting impossible implicit prerequisite `GNUmakefile.cc'. Trying pattern rule with stem `GNUmakefile'. Rejecting impossible implicit prerequisite `GNUmakefile.C'. Trying pattern rule with stem `GNUmakefile'. Rejecting impossible implicit prerequisite `GNUmakefile.cpp'. Trying pattern rule with stem `GNUmakefile'. Rejecting impossible implicit prerequisite `GNUmakefile.p'. Trying pattern rule with stem `GNUmakefile'. Rejecting impossible implicit prerequisite `GNUmakefile.f'. Trying pattern rule with stem `GNUmakefile'. Rejecting impossible implicit prerequisite `GNUmakefile.F'. Trying pattern rule with stem `GNUmakefile'. Rejecting impossible implicit prerequisite `GNUmakefile.m'. Trying pattern rule with stem `GNUmakefile'. Rejecting impossible implicit prerequisite `GNUmakefile.r'. Trying pattern rule with stem `GNUmakefile'. Rejecting impossible implicit prerequisite `GNUmakefile.s'. Trying pattern rule with stem `GNUmakefile'. Rejecting impossible implicit prerequisite `GNUmakefile.S'. Trying pattern rule with stem `GNUmakefile'. Rejecting impossible implicit prerequisite `GNUmakefile.mod'. Trying pattern rule with stem `GNUmakefile'. Trying implicit prerequisite `GNUmakefile.sh'. Looking for a rule with intermediate file `GNUmakefile.sh'. Avoiding implicit rule recursion. Trying pattern rule with stem `GNUmakefile.sh'. Trying implicit prerequisite `GNUmakefile.sh,v'. Trying pattern rule with stem `GNUmakefile.sh'. Trying implicit prerequisite `RCS/GNUmakefile.sh,v'. Trying pattern rule with stem `GNUmakefile.sh'. Trying implicit prerequisite `RCS/GNUmakefile.sh'. Trying pattern rule with stem `GNUmakefile.sh'. Trying implicit prerequisite `s.GNUmakefile.sh'. Trying pattern rule with stem `GNUmakefile.sh'. Trying implicit prerequisite `SCCS/s.GNUmakefile.sh'. No implicit rule found for `GNUmakefile'. Finished prerequisites of target file `GNUmakefile'. Must remake target `GNUmakefile'. Failed to remake target file `GNUmakefile'. Considering target file `makefile'. File `makefile' does not exist. Looking for an implicit rule for `makefile'. Trying pattern rule with stem `makefile'. Trying implicit prerequisite `makefile.o'. Trying pattern rule with stem `makefile'. Trying implicit prerequisite `makefile.c'. Trying pattern rule with stem `makefile'. Trying implicit prerequisite `makefile.cc'. Trying pattern rule with stem `makefile'. Trying implicit prerequisite `makefile.C'. Trying pattern rule with stem `makefile'. Trying implicit prerequisite `makefile.cpp'. Trying pattern rule with stem `makefile'. Trying implicit prerequisite `makefile.p'. Trying pattern rule with stem `makefile'. Trying implicit prerequisite `makefile.f'. Trying pattern rule with stem `makefile'. Trying implicit prerequisite `makefile.F'. Trying pattern rule with stem `makefile'. Trying implicit prerequisite `makefile.m'. Trying pattern rule with stem `makefile'. Trying implicit prerequisite `makefile.r'. Trying pattern rule with stem `makefile'. Trying implicit prerequisite `makefile.s'. Trying pattern rule with stem `makefile'. Trying implicit prerequisite `makefile.S'. Trying pattern rule with stem `makefile'. Trying implicit prerequisite `makefile.mod'. Trying pattern rule with stem `makefile'. Trying implicit prerequisite `makefile.sh'. Trying pattern rule with stem `makefile'. Trying implicit prerequisite `makefile,v'. Trying pattern rule with stem `makefile'. Trying implicit prerequisite `RCS/makefile,v'. Trying pattern rule with stem `makefile'. Trying implicit prerequisite `RCS/makefile'. Trying pattern rule with stem `makefile'. Trying implicit prerequisite `s.makefile'. Trying pattern rule with stem `makefile'. Trying implicit prerequisite `SCCS/s.makefile'. Trying pattern rule with stem `makefile'. Trying implicit prerequisite `makefile.o'. Looking for a rule with intermediate file `makefile.o'. Avoiding implicit rule recursion. Trying pattern rule with stem `makefile'. Trying implicit prerequisite `makefile.c'. Trying pattern rule with stem `makefile'. Trying implicit prerequisite `makefile.cc'. Trying pattern rule with stem `makefile'. Trying implicit prerequisite `makefile.C'. Trying pattern rule with stem `makefile'. Trying implicit prerequisite `makefile.cpp'. Trying pattern rule with stem `makefile'. Trying implicit prerequisite `makefile.p'. Trying pattern rule with stem `makefile'. Trying implicit prerequisite `makefile.f'. Trying pattern rule with stem `makefile'. Trying implicit prerequisite `makefile.F'. Trying pattern rule with stem `makefile'. Trying implicit prerequisite `makefile.m'. Trying pattern rule with stem `makefile'. Trying implicit prerequisite `makefile.r'. Trying pattern rule with stem `makefile'. Trying implicit prerequisite `makefile.s'. Trying pattern rule with stem `makefile'. Trying implicit prerequisite `makefile.S'. Trying pattern rule with stem `makefile'. Trying implicit prerequisite `makefile.mod'. Trying pattern rule with stem `makefile.o'. Trying implicit prerequisite `makefile.o,v'. Trying pattern rule with stem `makefile.o'. Trying implicit prerequisite `RCS/makefile.o,v'. Trying pattern rule with stem `makefile.o'. Trying implicit prerequisite `RCS/makefile.o'. Trying pattern rule with stem `makefile.o'. Trying implicit prerequisite `s.makefile.o'. Trying pattern rule with stem `makefile.o'. Trying implicit prerequisite `SCCS/s.makefile.o'. Trying pattern rule with stem `makefile'. Trying implicit prerequisite `makefile.c'. Looking for a rule with intermediate file `makefile.c'. Avoiding implicit rule recursion. Avoiding implicit rule recursion. Trying pattern rule with stem `makefile'. Trying implicit prerequisite `makefile.y'. Trying pattern rule with stem `makefile'. Trying implicit prerequisite `makefile.l'. Trying pattern rule with stem `makefile'. Trying implicit prerequisite `makefile.w'. Trying pattern rule with stem `makefile'. Trying implicit prerequisite `makefile.w'. Trying pattern rule with stem `makefile.c'. Trying implicit prerequisite `makefile.c,v'. Trying pattern rule with stem `makefile.c'. Trying implicit prerequisite `RCS/makefile.c,v'. Trying pattern rule with stem `makefile.c'. Trying implicit prerequisite `RCS/makefile.c'. Trying pattern rule with stem `makefile.c'. Trying implicit prerequisite `s.makefile.c'. Trying pattern rule with stem `makefile.c'. Trying implicit prerequisite `SCCS/s.makefile.c'. Trying pattern rule with stem `makefile'. Trying implicit prerequisite `makefile.y'. Looking for a rule with intermediate file `makefile.y'. Avoiding implicit rule recursion. Avoiding implicit rule recursion. Avoiding implicit rule recursion. Trying pattern rule with stem `makefile.y'. Trying implicit prerequisite `makefile.y,v'. Trying pattern rule with stem `makefile.y'. Trying implicit prerequisite `RCS/makefile.y,v'. Trying pattern rule with stem `makefile.y'. Trying implicit prerequisite `RCS/makefile.y'. Trying pattern rule with stem `makefile.y'. Trying implicit prerequisite `s.makefile.y'. Trying pattern rule with stem `makefile.y'. Trying implicit prerequisite `SCCS/s.makefile.y'. Trying pattern rule with stem `makefile'. Trying implicit prerequisite `makefile.l'. Looking for a rule with intermediate file `makefile.l'. Avoiding implicit rule recursion. Avoiding implicit rule recursion. Avoiding implicit rule recursion. Trying pattern rule with stem `makefile.l'. Trying implicit prerequisite `makefile.l,v'. Trying pattern rule with stem `makefile.l'. Trying implicit prerequisite `RCS/makefile.l,v'. Trying pattern rule with stem `makefile.l'. Trying implicit prerequisite `RCS/makefile.l'. Trying pattern rule with stem `makefile.l'. Trying implicit prerequisite `s.makefile.l'. Trying pattern rule with stem `makefile.l'. Trying implicit prerequisite `SCCS/s.makefile.l'. Trying pattern rule with stem `makefile'. Trying implicit prerequisite `makefile.w'. Looking for a rule with intermediate file `makefile.w'. Avoiding implicit rule recursion. Avoiding implicit rule recursion. Avoiding implicit rule recursion. Trying pattern rule with stem `makefile.w'. Trying implicit prerequisite `makefile.w,v'. Trying pattern rule with stem `makefile.w'. Trying implicit prerequisite `RCS/makefile.w,v'. Trying pattern rule with stem `makefile.w'. Trying implicit prerequisite `RCS/makefile.w'. Trying pattern rule with stem `makefile.w'. Trying implicit prerequisite `s.makefile.w'. Trying pattern rule with stem `makefile.w'. Trying implicit prerequisite `SCCS/s.makefile.w'. Trying pattern rule with stem `makefile'. Rejecting impossible implicit prerequisite `makefile.w'. Trying pattern rule with stem `makefile'. Trying implicit prerequisite `makefile.cc'. Looking for a rule with intermediate file `makefile.cc'. Avoiding implicit rule recursion. Avoiding implicit rule recursion. Trying pattern rule with stem `makefile.cc'. Trying implicit prerequisite `makefile.cc,v'. Trying pattern rule with stem `makefile.cc'. Trying implicit prerequisite `RCS/makefile.cc,v'. Trying pattern rule with stem `makefile.cc'. Trying implicit prerequisite `RCS/makefile.cc'. Trying pattern rule with stem `makefile.cc'. Trying implicit prerequisite `s.makefile.cc'. Trying pattern rule with stem `makefile.cc'. Trying implicit prerequisite `SCCS/s.makefile.cc'. Trying pattern rule with stem `makefile'. Trying implicit prerequisite `makefile.C'. Looking for a rule with intermediate file `makefile.C'. Avoiding implicit rule recursion. Avoiding implicit rule recursion. Trying pattern rule with stem `makefile.C'. Trying implicit prerequisite `makefile.C,v'. Trying pattern rule with stem `makefile.C'. Trying implicit prerequisite `RCS/makefile.C,v'. Trying pattern rule with stem `makefile.C'. Trying implicit prerequisite `RCS/makefile.C'. Trying pattern rule with stem `makefile.C'. Trying implicit prerequisite `s.makefile.C'. Trying pattern rule with stem `makefile.C'. Trying implicit prerequisite `SCCS/s.makefile.C'. Trying pattern rule with stem `makefile'. Trying implicit prerequisite `makefile.cpp'. Looking for a rule with intermediate file `makefile.cpp'. Avoiding implicit rule recursion. Avoiding implicit rule recursion. Trying pattern rule with stem `makefile.cpp'. Trying implicit prerequisite `makefile.cpp,v'. Trying pattern rule with stem `makefile.cpp'. Trying implicit prerequisite `RCS/makefile.cpp,v'. Trying pattern rule with stem `makefile.cpp'. Trying implicit prerequisite `RCS/makefile.cpp'. Trying pattern rule with stem `makefile.cpp'. Trying implicit prerequisite `s.makefile.cpp'. Trying pattern rule with stem `makefile.cpp'. Trying implicit prerequisite `SCCS/s.makefile.cpp'. Trying pattern rule with stem `makefile'. Trying implicit prerequisite `makefile.p'. Looking for a rule with intermediate file `makefile.p'. Avoiding implicit rule recursion. Avoiding implicit rule recursion. Trying pattern rule with stem `makefile'. Trying implicit prerequisite `makefile.web'. Trying pattern rule with stem `makefile.p'. Trying implicit prerequisite `makefile.p,v'. Trying pattern rule with stem `makefile.p'. Trying implicit prerequisite `RCS/makefile.p,v'. Trying pattern rule with stem `makefile.p'. Trying implicit prerequisite `RCS/makefile.p'. Trying pattern rule with stem `makefile.p'. Trying implicit prerequisite `s.makefile.p'. Trying pattern rule with stem `makefile.p'. Trying implicit prerequisite `SCCS/s.makefile.p'. Trying pattern rule with stem `makefile'. Trying implicit prerequisite `makefile.web'. Looking for a rule with intermediate file `makefile.web'. Avoiding implicit rule recursion. Avoiding implicit rule recursion. Avoiding implicit rule recursion. Trying pattern rule with stem `makefile.web'. Trying implicit prerequisite `makefile.web,v'. Trying pattern rule with stem `makefile.web'. Trying implicit prerequisite `RCS/makefile.web,v'. Trying pattern rule with stem `makefile.web'. Trying implicit prerequisite `RCS/makefile.web'. Trying pattern rule with stem `makefile.web'. Trying implicit prerequisite `s.makefile.web'. Trying pattern rule with stem `makefile.web'. Trying implicit prerequisite `SCCS/s.makefile.web'. Trying pattern rule with stem `makefile'. Trying implicit prerequisite `makefile.f'. Looking for a rule with intermediate file `makefile.f'. Avoiding implicit rule recursion. Avoiding implicit rule recursion. Trying pattern rule with stem `makefile'. Trying implicit prerequisite `makefile.F'. Trying pattern rule with stem `makefile'. Trying implicit prerequisite `makefile.r'. Trying pattern rule with stem `makefile.f'. Trying implicit prerequisite `makefile.f,v'. Trying pattern rule with stem `makefile.f'. Trying implicit prerequisite `RCS/makefile.f,v'. Trying pattern rule with stem `makefile.f'. Trying implicit prerequisite `RCS/makefile.f'. Trying pattern rule with stem `makefile.f'. Trying implicit prerequisite `s.makefile.f'. Trying pattern rule with stem `makefile.f'. Trying implicit prerequisite `SCCS/s.makefile.f'. Trying pattern rule with stem `makefile'. Trying implicit prerequisite `makefile.F'. Looking for a rule with intermediate file `makefile.F'. Avoiding implicit rule recursion. Avoiding implicit rule recursion. Avoiding implicit rule recursion. Trying pattern rule with stem `makefile.F'. Trying implicit prerequisite `makefile.F,v'. Trying pattern rule with stem `makefile.F'. Trying implicit prerequisite `RCS/makefile.F,v'. Trying pattern rule with stem `makefile.F'. Trying implicit prerequisite `RCS/makefile.F'. Trying pattern rule with stem `makefile.F'. Trying implicit prerequisite `s.makefile.F'. Trying pattern rule with stem `makefile.F'. Trying implicit prerequisite `SCCS/s.makefile.F'. Trying pattern rule with stem `makefile'. Trying implicit prerequisite `makefile.r'. Looking for a rule with intermediate file `makefile.r'. Avoiding implicit rule recursion. Avoiding implicit rule recursion. Avoiding implicit rule recursion. Trying pattern rule with stem `makefile'. Rejecting impossible implicit prerequisite `makefile.l'. Trying pattern rule with stem `makefile.r'. Trying implicit prerequisite `makefile.r,v'. Trying pattern rule with stem `makefile.r'. Trying implicit prerequisite `RCS/makefile.r,v'. Trying pattern rule with stem `makefile.r'. Trying implicit prerequisite `RCS/makefile.r'. Trying pattern rule with stem `makefile.r'. Trying implicit prerequisite `s.makefile.r'. Trying pattern rule with stem `makefile.r'. Trying implicit prerequisite `SCCS/s.makefile.r'. Trying pattern rule with stem `makefile'. Rejecting impossible implicit prerequisite `makefile.F'. Trying pattern rule with stem `makefile'. Trying implicit prerequisite `makefile.m'. Looking for a rule with intermediate file `makefile.m'. Avoiding implicit rule recursion. Avoiding implicit rule recursion. Trying pattern rule with stem `makefile'. Trying implicit prerequisite `makefile.ym'. Trying pattern rule with stem `makefile'. Trying implicit prerequisite `makefile.lm'. Trying pattern rule with stem `makefile.m'. Trying implicit prerequisite `makefile.m,v'. Trying pattern rule with stem `makefile.m'. Trying implicit prerequisite `RCS/makefile.m,v'. Trying pattern rule with stem `makefile.m'. Trying implicit prerequisite `RCS/makefile.m'. Trying pattern rule with stem `makefile.m'. Trying implicit prerequisite `s.makefile.m'. Trying pattern rule with stem `makefile.m'. Trying implicit prerequisite `SCCS/s.makefile.m'. Trying pattern rule with stem `makefile'. Trying implicit prerequisite `makefile.ym'. Looking for a rule with intermediate file `makefile.ym'. Avoiding implicit rule recursion. Avoiding implicit rule recursion. Avoiding implicit rule recursion. Trying pattern rule with stem `makefile.ym'. Trying implicit prerequisite `makefile.ym,v'. Trying pattern rule with stem `makefile.ym'. Trying implicit prerequisite `RCS/makefile.ym,v'. Trying pattern rule with stem `makefile.ym'. Trying implicit prerequisite `RCS/makefile.ym'. Trying pattern rule with stem `makefile.ym'. Trying implicit prerequisite `s.makefile.ym'. Trying pattern rule with stem `makefile.ym'. Trying implicit prerequisite `SCCS/s.makefile.ym'. Trying pattern rule with stem `makefile'. Trying implicit prerequisite `makefile.lm'. Looking for a rule with intermediate file `makefile.lm'. Avoiding implicit rule recursion. Avoiding implicit rule recursion. Avoiding implicit rule recursion. Trying pattern rule with stem `makefile.lm'. Trying implicit prerequisite `makefile.lm,v'. Trying pattern rule with stem `makefile.lm'. Trying implicit prerequisite `RCS/makefile.lm,v'. Trying pattern rule with stem `makefile.lm'. Trying implicit prerequisite `RCS/makefile.lm'. Trying pattern rule with stem `makefile.lm'. Trying implicit prerequisite `s.makefile.lm'. Trying pattern rule with stem `makefile.lm'. Trying implicit prerequisite `SCCS/s.makefile.lm'. Trying pattern rule with stem `makefile'. Rejecting impossible implicit prerequisite `makefile.r'. Trying pattern rule with stem `makefile'. Trying implicit prerequisite `makefile.s'. Looking for a rule with intermediate file `makefile.s'. Avoiding implicit rule recursion. Avoiding implicit rule recursion. Trying pattern rule with stem `makefile'. Trying implicit prerequisite `makefile.S'. Trying pattern rule with stem `makefile.s'. Trying implicit prerequisite `makefile.s,v'. Trying pattern rule with stem `makefile.s'. Trying implicit prerequisite `RCS/makefile.s,v'. Trying pattern rule with stem `makefile.s'. Trying implicit prerequisite `RCS/makefile.s'. Trying pattern rule with stem `makefile.s'. Trying implicit prerequisite `s.makefile.s'. Trying pattern rule with stem `makefile.s'. Trying implicit prerequisite `SCCS/s.makefile.s'. Trying pattern rule with stem `makefile'. Trying implicit prerequisite `makefile.S'. Looking for a rule with intermediate file `makefile.S'. Avoiding implicit rule recursion. Avoiding implicit rule recursion. Avoiding implicit rule recursion. Trying pattern rule with stem `makefile.S'. Trying implicit prerequisite `makefile.S,v'. Trying pattern rule with stem `makefile.S'. Trying implicit prerequisite `RCS/makefile.S,v'. Trying pattern rule with stem `makefile.S'. Trying implicit prerequisite `RCS/makefile.S'. Trying pattern rule with stem `makefile.S'. Trying implicit prerequisite `s.makefile.S'. Trying pattern rule with stem `makefile.S'. Trying implicit prerequisite `SCCS/s.makefile.S'. Trying pattern rule with stem `makefile'. Rejecting impossible implicit prerequisite `makefile.S'. Trying pattern rule with stem `makefile'. Trying implicit prerequisite `makefile.mod'. Looking for a rule with intermediate file `makefile.mod'. Avoiding implicit rule recursion. Avoiding implicit rule recursion. Trying pattern rule with stem `makefile.mod'. Trying implicit prerequisite `makefile.mod,v'. Trying pattern rule with stem `makefile.mod'. Trying implicit prerequisite `RCS/makefile.mod,v'. Trying pattern rule with stem `makefile.mod'. Trying implicit prerequisite `RCS/makefile.mod'. Trying pattern rule with stem `makefile.mod'. Trying implicit prerequisite `s.makefile.mod'. Trying pattern rule with stem `makefile.mod'. Trying implicit prerequisite `SCCS/s.makefile.mod'. Trying pattern rule with stem `makefile'. Rejecting impossible implicit prerequisite `makefile.c'. Trying pattern rule with stem `makefile'. Rejecting impossible implicit prerequisite `makefile.cc'. Trying pattern rule with stem `makefile'. Rejecting impossible implicit prerequisite `makefile.C'. Trying pattern rule with stem `makefile'. Rejecting impossible implicit prerequisite `makefile.cpp'. Trying pattern rule with stem `makefile'. Rejecting impossible implicit prerequisite `makefile.p'. Trying pattern rule with stem `makefile'. Rejecting impossible implicit prerequisite `makefile.f'. Trying pattern rule with stem `makefile'. Rejecting impossible implicit prerequisite `makefile.F'. Trying pattern rule with stem `makefile'. Rejecting impossible implicit prerequisite `makefile.m'. Trying pattern rule with stem `makefile'. Rejecting impossible implicit prerequisite `makefile.r'. Trying pattern rule with stem `makefile'. Rejecting impossible implicit prerequisite `makefile.s'. Trying pattern rule with stem `makefile'. Rejecting impossible implicit prerequisite `makefile.S'. Trying pattern rule with stem `makefile'. Rejecting impossible implicit prerequisite `makefile.mod'. Trying pattern rule with stem `makefile'. Trying implicit prerequisite `makefile.sh'. Looking for a rule with intermediate file `makefile.sh'. Avoiding implicit rule recursion. Trying pattern rule with stem `makefile.sh'. Trying implicit prerequisite `makefile.sh,v'. Trying pattern rule with stem `makefile.sh'. Trying implicit prerequisite `RCS/makefile.sh,v'. Trying pattern rule with stem `makefile.sh'. Trying implicit prerequisite `RCS/makefile.sh'. Trying pattern rule with stem `makefile.sh'. Trying implicit prerequisite `s.makefile.sh'. Trying pattern rule with stem `makefile.sh'. Trying implicit prerequisite `SCCS/s.makefile.sh'. No implicit rule found for `makefile'. Finished prerequisites of target file `makefile'. Must remake target `makefile'. Failed to remake target file `makefile'. Considering target file `Makefile'. File `Makefile' does not exist. Looking for an implicit rule for `Makefile'. Trying pattern rule with stem `Makefile'. Trying implicit prerequisite `Makefile.o'. Trying pattern rule with stem `Makefile'. Trying implicit prerequisite `Makefile.c'. Trying pattern rule with stem `Makefile'. Trying implicit prerequisite `Makefile.cc'. Trying pattern rule with stem `Makefile'. Trying implicit prerequisite `Makefile.C'. Trying pattern rule with stem `Makefile'. Trying implicit prerequisite `Makefile.cpp'. Trying pattern rule with stem `Makefile'. Trying implicit prerequisite `Makefile.p'. Trying pattern rule with stem `Makefile'. Trying implicit prerequisite `Makefile.f'. Trying pattern rule with stem `Makefile'. Trying implicit prerequisite `Makefile.F'. Trying pattern rule with stem `Makefile'. Trying implicit prerequisite `Makefile.m'. Trying pattern rule with stem `Makefile'. Trying implicit prerequisite `Makefile.r'. Trying pattern rule with stem `Makefile'. Trying implicit prerequisite `Makefile.s'. Trying pattern rule with stem `Makefile'. Trying implicit prerequisite `Makefile.S'. Trying pattern rule with stem `Makefile'. Trying implicit prerequisite `Makefile.mod'. Trying pattern rule with stem `Makefile'. Trying implicit prerequisite `Makefile.sh'. Trying pattern rule with stem `Makefile'. Trying implicit prerequisite `Makefile,v'. Trying pattern rule with stem `Makefile'. Trying implicit prerequisite `RCS/Makefile,v'. Trying pattern rule with stem `Makefile'. Trying implicit prerequisite `RCS/Makefile'. Trying pattern rule with stem `Makefile'. Trying implicit prerequisite `s.Makefile'. Trying pattern rule with stem `Makefile'. Trying implicit prerequisite `SCCS/s.Makefile'. Trying pattern rule with stem `Makefile'. Trying implicit prerequisite `Makefile.o'. Looking for a rule with intermediate file `Makefile.o'. Avoiding implicit rule recursion. Trying pattern rule with stem `Makefile'. Trying implicit prerequisite `Makefile.c'. Trying pattern rule with stem `Makefile'. Trying implicit prerequisite `Makefile.cc'. Trying pattern rule with stem `Makefile'. Trying implicit prerequisite `Makefile.C'. Trying pattern rule with stem `Makefile'. Trying implicit prerequisite `Makefile.cpp'. Trying pattern rule with stem `Makefile'. Trying implicit prerequisite `Makefile.p'. Trying pattern rule with stem `Makefile'. Trying implicit prerequisite `Makefile.f'. Trying pattern rule with stem `Makefile'. Trying implicit prerequisite `Makefile.F'. Trying pattern rule with stem `Makefile'. Trying implicit prerequisite `Makefile.m'. Trying pattern rule with stem `Makefile'. Trying implicit prerequisite `Makefile.r'. Trying pattern rule with stem `Makefile'. Trying implicit prerequisite `Makefile.s'. Trying pattern rule with stem `Makefile'. Trying implicit prerequisite `Makefile.S'. Trying pattern rule with stem `Makefile'. Trying implicit prerequisite `Makefile.mod'. Trying pattern rule with stem `Makefile.o'. Trying implicit prerequisite `Makefile.o,v'. Trying pattern rule with stem `Makefile.o'. Trying implicit prerequisite `RCS/Makefile.o,v'. Trying pattern rule with stem `Makefile.o'. Trying implicit prerequisite `RCS/Makefile.o'. Trying pattern rule with stem `Makefile.o'. Trying implicit prerequisite `s.Makefile.o'. Trying pattern rule with stem `Makefile.o'. Trying implicit prerequisite `SCCS/s.Makefile.o'. Trying pattern rule with stem `Makefile'. Trying implicit prerequisite `Makefile.c'. Looking for a rule with intermediate file `Makefile.c'. Avoiding implicit rule recursion. Avoiding implicit rule recursion. Trying pattern rule with stem `Makefile'. Trying implicit prerequisite `Makefile.y'. Trying pattern rule with stem `Makefile'. Trying implicit prerequisite `Makefile.l'. Trying pattern rule with stem `Makefile'. Trying implicit prerequisite `Makefile.w'. Trying pattern rule with stem `Makefile'. Trying implicit prerequisite `Makefile.w'. Trying pattern rule with stem `Makefile.c'. Trying implicit prerequisite `Makefile.c,v'. Trying pattern rule with stem `Makefile.c'. Trying implicit prerequisite `RCS/Makefile.c,v'. Trying pattern rule with stem `Makefile.c'. Trying implicit prerequisite `RCS/Makefile.c'. Trying pattern rule with stem `Makefile.c'. Trying implicit prerequisite `s.Makefile.c'. Trying pattern rule with stem `Makefile.c'. Trying implicit prerequisite `SCCS/s.Makefile.c'. Trying pattern rule with stem `Makefile'. Trying implicit prerequisite `Makefile.y'. Looking for a rule with intermediate file `Makefile.y'. Avoiding implicit rule recursion. Avoiding implicit rule recursion. Avoiding implicit rule recursion. Trying pattern rule with stem `Makefile.y'. Trying implicit prerequisite `Makefile.y,v'. Trying pattern rule with stem `Makefile.y'. Trying implicit prerequisite `RCS/Makefile.y,v'. Trying pattern rule with stem `Makefile.y'. Trying implicit prerequisite `RCS/Makefile.y'. Trying pattern rule with stem `Makefile.y'. Trying implicit prerequisite `s.Makefile.y'. Trying pattern rule with stem `Makefile.y'. Trying implicit prerequisite `SCCS/s.Makefile.y'. Trying pattern rule with stem `Makefile'. Trying implicit prerequisite `Makefile.l'. Looking for a rule with intermediate file `Makefile.l'. Avoiding implicit rule recursion. Avoiding implicit rule recursion. Avoiding implicit rule recursion. Trying pattern rule with stem `Makefile.l'. Trying implicit prerequisite `Makefile.l,v'. Trying pattern rule with stem `Makefile.l'. Trying implicit prerequisite `RCS/Makefile.l,v'. Trying pattern rule with stem `Makefile.l'. Trying implicit prerequisite `RCS/Makefile.l'. Trying pattern rule with stem `Makefile.l'. Trying implicit prerequisite `s.Makefile.l'. Trying pattern rule with stem `Makefile.l'. Trying implicit prerequisite `SCCS/s.Makefile.l'. Trying pattern rule with stem `Makefile'. Trying implicit prerequisite `Makefile.w'. Looking for a rule with intermediate file `Makefile.w'. Avoiding implicit rule recursion. Avoiding implicit rule recursion. Avoiding implicit rule recursion. Trying pattern rule with stem `Makefile.w'. Trying implicit prerequisite `Makefile.w,v'. Trying pattern rule with stem `Makefile.w'. Trying implicit prerequisite `RCS/Makefile.w,v'. Trying pattern rule with stem `Makefile.w'. Trying implicit prerequisite `RCS/Makefile.w'. Trying pattern rule with stem `Makefile.w'. Trying implicit prerequisite `s.Makefile.w'. Trying pattern rule with stem `Makefile.w'. Trying implicit prerequisite `SCCS/s.Makefile.w'. Trying pattern rule with stem `Makefile'. Rejecting impossible implicit prerequisite `Makefile.w'. Trying pattern rule with stem `Makefile'. Trying implicit prerequisite `Makefile.cc'. Looking for a rule with intermediate file `Makefile.cc'. Avoiding implicit rule recursion. Avoiding implicit rule recursion. Trying pattern rule with stem `Makefile.cc'. Trying implicit prerequisite `Makefile.cc,v'. Trying pattern rule with stem `Makefile.cc'. Trying implicit prerequisite `RCS/Makefile.cc,v'. Trying pattern rule with stem `Makefile.cc'. Trying implicit prerequisite `RCS/Makefile.cc'. Trying pattern rule with stem `Makefile.cc'. Trying implicit prerequisite `s.Makefile.cc'. Trying pattern rule with stem `Makefile.cc'. Trying implicit prerequisite `SCCS/s.Makefile.cc'. Trying pattern rule with stem `Makefile'. Trying implicit prerequisite `Makefile.C'. Looking for a rule with intermediate file `Makefile.C'. Avoiding implicit rule recursion. Avoiding implicit rule recursion. Trying pattern rule with stem `Makefile.C'. Trying implicit prerequisite `Makefile.C,v'. Trying pattern rule with stem `Makefile.C'. Trying implicit prerequisite `RCS/Makefile.C,v'. Trying pattern rule with stem `Makefile.C'. Trying implicit prerequisite `RCS/Makefile.C'. Trying pattern rule with stem `Makefile.C'. Trying implicit prerequisite `s.Makefile.C'. Trying pattern rule with stem `Makefile.C'. Trying implicit prerequisite `SCCS/s.Makefile.C'. Trying pattern rule with stem `Makefile'. Trying implicit prerequisite `Makefile.cpp'. Looking for a rule with intermediate file `Makefile.cpp'. Avoiding implicit rule recursion. Avoiding implicit rule recursion. Trying pattern rule with stem `Makefile.cpp'. Trying implicit prerequisite `Makefile.cpp,v'. Trying pattern rule with stem `Makefile.cpp'. Trying implicit prerequisite `RCS/Makefile.cpp,v'. Trying pattern rule with stem `Makefile.cpp'. Trying implicit prerequisite `RCS/Makefile.cpp'. Trying pattern rule with stem `Makefile.cpp'. Trying implicit prerequisite `s.Makefile.cpp'. Trying pattern rule with stem `Makefile.cpp'. Trying implicit prerequisite `SCCS/s.Makefile.cpp'. Trying pattern rule with stem `Makefile'. Trying implicit prerequisite `Makefile.p'. Looking for a rule with intermediate file `Makefile.p'. Avoiding implicit rule recursion. Avoiding implicit rule recursion. Trying pattern rule with stem `Makefile'. Trying implicit prerequisite `Makefile.web'. Trying pattern rule with stem `Makefile.p'. Trying implicit prerequisite `Makefile.p,v'. Trying pattern rule with stem `Makefile.p'. Trying implicit prerequisite `RCS/Makefile.p,v'. Trying pattern rule with stem `Makefile.p'. Trying implicit prerequisite `RCS/Makefile.p'. Trying pattern rule with stem `Makefile.p'. Trying implicit prerequisite `s.Makefile.p'. Trying pattern rule with stem `Makefile.p'. Trying implicit prerequisite `SCCS/s.Makefile.p'. Trying pattern rule with stem `Makefile'. Trying implicit prerequisite `Makefile.web'. Looking for a rule with intermediate file `Makefile.web'. Avoiding implicit rule recursion. Avoiding implicit rule recursion. Avoiding implicit rule recursion. Trying pattern rule with stem `Makefile.web'. Trying implicit prerequisite `Makefile.web,v'. Trying pattern rule with stem `Makefile.web'. Trying implicit prerequisite `RCS/Makefile.web,v'. Trying pattern rule with stem `Makefile.web'. Trying implicit prerequisite `RCS/Makefile.web'. Trying pattern rule with stem `Makefile.web'. Trying implicit prerequisite `s.Makefile.web'. Trying pattern rule with stem `Makefile.web'. Trying implicit prerequisite `SCCS/s.Makefile.web'. Trying pattern rule with stem `Makefile'. Trying implicit prerequisite `Makefile.f'. Looking for a rule with intermediate file `Makefile.f'. Avoiding implicit rule recursion. Avoiding implicit rule recursion. Trying pattern rule with stem `Makefile'. Trying implicit prerequisite `Makefile.F'. Trying pattern rule with stem `Makefile'. Trying implicit prerequisite `Makefile.r'. Trying pattern rule with stem `Makefile.f'. Trying implicit prerequisite `Makefile.f,v'. Trying pattern rule with stem `Makefile.f'. Trying implicit prerequisite `RCS/Makefile.f,v'. Trying pattern rule with stem `Makefile.f'. Trying implicit prerequisite `RCS/Makefile.f'. Trying pattern rule with stem `Makefile.f'. Trying implicit prerequisite `s.Makefile.f'. Trying pattern rule with stem `Makefile.f'. Trying implicit prerequisite `SCCS/s.Makefile.f'. Trying pattern rule with stem `Makefile'. Trying implicit prerequisite `Makefile.F'. Looking for a rule with intermediate file `Makefile.F'. Avoiding implicit rule recursion. Avoiding implicit rule recursion. Avoiding implicit rule recursion. Trying pattern rule with stem `Makefile.F'. Trying implicit prerequisite `Makefile.F,v'. Trying pattern rule with stem `Makefile.F'. Trying implicit prerequisite `RCS/Makefile.F,v'. Trying pattern rule with stem `Makefile.F'. Trying implicit prerequisite `RCS/Makefile.F'. Trying pattern rule with stem `Makefile.F'. Trying implicit prerequisite `s.Makefile.F'. Trying pattern rule with stem `Makefile.F'. Trying implicit prerequisite `SCCS/s.Makefile.F'. Trying pattern rule with stem `Makefile'. Trying implicit prerequisite `Makefile.r'. Looking for a rule with intermediate file `Makefile.r'. Avoiding implicit rule recursion. Avoiding implicit rule recursion. Avoiding implicit rule recursion. Trying pattern rule with stem `Makefile'. Rejecting impossible implicit prerequisite `Makefile.l'. Trying pattern rule with stem `Makefile.r'. Trying implicit prerequisite `Makefile.r,v'. Trying pattern rule with stem `Makefile.r'. Trying implicit prerequisite `RCS/Makefile.r,v'. Trying pattern rule with stem `Makefile.r'. Trying implicit prerequisite `RCS/Makefile.r'. Trying pattern rule with stem `Makefile.r'. Trying implicit prerequisite `s.Makefile.r'. Trying pattern rule with stem `Makefile.r'. Trying implicit prerequisite `SCCS/s.Makefile.r'. Trying pattern rule with stem `Makefile'. Rejecting impossible implicit prerequisite `Makefile.F'. Trying pattern rule with stem `Makefile'. Trying implicit prerequisite `Makefile.m'. Looking for a rule with intermediate file `Makefile.m'. Avoiding implicit rule recursion. Avoiding implicit rule recursion. Trying pattern rule with stem `Makefile'. Trying implicit prerequisite `Makefile.ym'. Trying pattern rule with stem `Makefile'. Trying implicit prerequisite `Makefile.lm'. Trying pattern rule with stem `Makefile.m'. Trying implicit prerequisite `Makefile.m,v'. Trying pattern rule with stem `Makefile.m'. Trying implicit prerequisite `RCS/Makefile.m,v'. Trying pattern rule with stem `Makefile.m'. Trying implicit prerequisite `RCS/Makefile.m'. Trying pattern rule with stem `Makefile.m'. Trying implicit prerequisite `s.Makefile.m'. Trying pattern rule with stem `Makefile.m'. Trying implicit prerequisite `SCCS/s.Makefile.m'. Trying pattern rule with stem `Makefile'. Trying implicit prerequisite `Makefile.ym'. Looking for a rule with intermediate file `Makefile.ym'. Avoiding implicit rule recursion. Avoiding implicit rule recursion. Avoiding implicit rule recursion. Trying pattern rule with stem `Makefile.ym'. Trying implicit prerequisite `Makefile.ym,v'. Trying pattern rule with stem `Makefile.ym'. Trying implicit prerequisite `RCS/Makefile.ym,v'. Trying pattern rule with stem `Makefile.ym'. Trying implicit prerequisite `RCS/Makefile.ym'. Trying pattern rule with stem `Makefile.ym'. Trying implicit prerequisite `s.Makefile.ym'. Trying pattern rule with stem `Makefile.ym'. Trying implicit prerequisite `SCCS/s.Makefile.ym'. Trying pattern rule with stem `Makefile'. Trying implicit prerequisite `Makefile.lm'. Looking for a rule with intermediate file `Makefile.lm'. Avoiding implicit rule recursion. Avoiding implicit rule recursion. Avoiding implicit rule recursion. Trying pattern rule with stem `Makefile.lm'. Trying implicit prerequisite `Makefile.lm,v'. Trying pattern rule with stem `Makefile.lm'. Trying implicit prerequisite `RCS/Makefile.lm,v'. Trying pattern rule with stem `Makefile.lm'. Trying implicit prerequisite `RCS/Makefile.lm'. Trying pattern rule with stem `Makefile.lm'. Trying implicit prerequisite `s.Makefile.lm'. Trying pattern rule with stem `Makefile.lm'. Trying implicit prerequisite `SCCS/s.Makefile.lm'. Trying pattern rule with stem `Makefile'. Rejecting impossible implicit prerequisite `Makefile.r'. Trying pattern rule with stem `Makefile'. Trying implicit prerequisite `Makefile.s'. Looking for a rule with intermediate file `Makefile.s'. Avoiding implicit rule recursion. Avoiding implicit rule recursion. Trying pattern rule with stem `Makefile'. Trying implicit prerequisite `Makefile.S'. Trying pattern rule with stem `Makefile.s'. Trying implicit prerequisite `Makefile.s,v'. Trying pattern rule with stem `Makefile.s'. Trying implicit prerequisite `RCS/Makefile.s,v'. Trying pattern rule with stem `Makefile.s'. Trying implicit prerequisite `RCS/Makefile.s'. Trying pattern rule with stem `Makefile.s'. Trying implicit prerequisite `s.Makefile.s'. Trying pattern rule with stem `Makefile.s'. Trying implicit prerequisite `SCCS/s.Makefile.s'. Trying pattern rule with stem `Makefile'. Trying implicit prerequisite `Makefile.S'. Looking for a rule with intermediate file `Makefile.S'. Avoiding implicit rule recursion. Avoiding implicit rule recursion. Avoiding implicit rule recursion. Trying pattern rule with stem `Makefile.S'. Trying implicit prerequisite `Makefile.S,v'. Trying pattern rule with stem `Makefile.S'. Trying implicit prerequisite `RCS/Makefile.S,v'. Trying pattern rule with stem `Makefile.S'. Trying implicit prerequisite `RCS/Makefile.S'. Trying pattern rule with stem `Makefile.S'. Trying implicit prerequisite `s.Makefile.S'. Trying pattern rule with stem `Makefile.S'. Trying implicit prerequisite `SCCS/s.Makefile.S'. Trying pattern rule with stem `Makefile'. Rejecting impossible implicit prerequisite `Makefile.S'. Trying pattern rule with stem `Makefile'. Trying implicit prerequisite `Makefile.mod'. Looking for a rule with intermediate file `Makefile.mod'. Avoiding implicit rule recursion. Avoiding implicit rule recursion. Trying pattern rule with stem `Makefile.mod'. Trying implicit prerequisite `Makefile.mod,v'. Trying pattern rule with stem `Makefile.mod'. Trying implicit prerequisite `RCS/Makefile.mod,v'. Trying pattern rule with stem `Makefile.mod'. Trying implicit prerequisite `RCS/Makefile.mod'. Trying pattern rule with stem `Makefile.mod'. Trying implicit prerequisite `s.Makefile.mod'. Trying pattern rule with stem `Makefile.mod'. Trying implicit prerequisite `SCCS/s.Makefile.mod'. Trying pattern rule with stem `Makefile'. Rejecting impossible implicit prerequisite `Makefile.c'. Trying pattern rule with stem `Makefile'. Rejecting impossible implicit prerequisite `Makefile.cc'. Trying pattern rule with stem `Makefile'. Rejecting impossible implicit prerequisite `Makefile.C'. Trying pattern rule with stem `Makefile'. Rejecting impossible implicit prerequisite `Makefile.cpp'. Trying pattern rule with stem `Makefile'. Rejecting impossible implicit prerequisite `Makefile.p'. Trying pattern rule with stem `Makefile'. Rejecting impossible implicit prerequisite `Makefile.f'. Trying pattern rule with stem `Makefile'. Rejecting impossible implicit prerequisite `Makefile.F'. Trying pattern rule with stem `Makefile'. Rejecting impossible implicit prerequisite `Makefile.m'. Trying pattern rule with stem `Makefile'. Rejecting impossible implicit prerequisite `Makefile.r'. Trying pattern rule with stem `Makefile'. Rejecting impossible implicit prerequisite `Makefile.s'. Trying pattern rule with stem `Makefile'. Rejecting impossible implicit prerequisite `Makefile.S'. Trying pattern rule with stem `Makefile'. Rejecting impossible implicit prerequisite `Makefile.mod'. Trying pattern rule with stem `Makefile'. Trying implicit prerequisite `Makefile.sh'. Looking for a rule with intermediate file `Makefile.sh'. Avoiding implicit rule recursion. Trying pattern rule with stem `Makefile.sh'. Trying implicit prerequisite `Makefile.sh,v'. Trying pattern rule with stem `Makefile.sh'. Trying implicit prerequisite `RCS/Makefile.sh,v'. ... ... Trying implicit prerequisite `SCCS/s.setup.sh'. No implicit rule found for `setup'. Finished prerequisites of target file `setup'. Must remake target `setup'.