|
|
I am admittedly green when it comes to compiling new apps, so please excuse
me if this question has an easy solution.
I am trying to compile the new version of povray (3.6.1) on an SGI system,
and I am coming across a syntax error when I run the make command:
> make
make all-recursive
Making all in libraries
make: file `Makefile' line 424: Syntax error
*** Error code 1 (bu21)
*** Error code 1 (bu21)
Anyone have any suggestions?
Here's what line 424 (424 labelled below) looks like:
# This directory's subdirectories are mostly independent; you can cd
# into them and run `make' without going through this Makefile.
# To change the values of `make' variables: instead of editing Makefiles,
# (1) if the variable is set in `config.status', edit `config.status'
# (which will cause the Makefiles to be regenerated when you run
`make');
# (2) otherwise, pass the desired values on the `make' command line.
$(RECURSIVE_TARGETS):
@set fnord $$MAKEFLAGS; amf=$$2;
dot_seen=no;
target=`echo $@ | sed s/-recursive//`;
list='$(SUBDIRS)'; for subdir in $$list; do
echo "Making $$target in $$subdir";
if test "$$subdir" = "."; then
dot_seen=yes;
local_target="$$target-am";
else
local_target="$$target";
fi;
(cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target)
|| case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;;
esac;
done;
if test "$$dot_seen" = "no"; then
$(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1;
fi; test -z "$$fail"
<line 424 starts below>
mostlyclean-recursive clean-recursive distclean-recursive
maintainer-clean-recursive:
@set fnord $$MAKEFLAGS; amf=$$2;
dot_seen=no;
case "$@" in
distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;;
*) list='$(SUBDIRS)' ;;
esac;
rev=''; for subdir in $$list; do
if test "$$subdir" = "."; then :; else
rev="$$subdir $$rev";
fi;
done;
rev="$$rev .";
target=`echo $@ | sed s/-recursive//`;
for subdir in $$rev; do
echo "Making $$target in $$subdir";
if test "$$subdir" = "."; then
Thanks in advance.
Jeff
Post a reply to this message
|
|