Line length limit problem?



Which platform and which make? I'm assuming the answer is Solaris to
both. With GNU Make, "plot.lisp" only occurs in cmucl-depends.mk, which
is included by Makefile. What does cmucl-depends.mk contain?

If we're lucky, the problem is some hysteresis in the autotool process.
Can you try to manually rebuild cmucl-depends.mk, then do a fresh
configure?

If we're unlucky, we will need to rewrite the create-dependency-file
function in lisp-utils/make-depends to create output of the form

target: dep1
target: dep2
target: dep3

instead of

target: dep1 dep2 dep3

--Jim



On Mon, 2002-04-29 at 11:32, Raymond Toy wrote:
> 
> While adding the Bessel Y functions to maxima, I've run into a
> problem.  After doing a "config.status; make", make complains:
> 
> make[1]: *** No rule to make target `plot.lis', needed by `binary-cmucl/maxima.core'.  Stop.
> 
> Sure enough, if you look in src/Makefile, the rule for
> binary-cmucl/maxima.core is truncated at "plot.lis", instead of
> containing the last few files listed in cmucl-depends.mk.
> 
> I don't know what processing is happening here to create src/Makefile,
> but I'm guessing that we're running into some line-length limitation
> of some utility.  Perhaps it's sed?
> 
> Ray
> _______________________________________________
> Maxima mailing list
> Maxima@www.math.utexas.edu
> http://www.math.utexas.edu/mailman/listinfo/maxima