I just checked in a set of fixes to help get make dist to work.  I've
run into a problem with the generated Makefiles that comes from one of
the auto* tools.  The distclean-compile: target for the native
directories (native/fdlibm in example) looks like this.

distclean-compile:
        -rm -f *.tab.c

 $(DEPDIR)/dtoa.Plo
 $(DEPDIR)/e_acos.Plo
 $(DEPDIR)/e_asin.Plo
 $(DEPDIR)/e_atan2.Plo
 $(DEPDIR)/e_exp.Plo
...

make[2]: Entering directory `/home/cbj/cvs/classpath/build/native/fdlibm'
Makefile:263: *** missing separator.  Stop.
make[2]: Leaving directory `/home/cbj/cvs/classpath/build/native/fdlibm'

This appears traceable back to automake, which generated this.

distclean-compile:
        -rm -f *.tab.c

@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/dtoa.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/e_acos.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/e_asin.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/e_atan2.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/e_exp.Plo@am__quote@
...

I think Tom works on automake, I'm hoping he can help answer the
question of how to fix or work around this.  I'm using automake 1.5.

Brian
-- 
Brian Jones <[EMAIL PROTECTED]>

_______________________________________________
Classpath mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/classpath

Reply via email to