Nikos Mavrogiannopoulos nmav@gnutls.org writes:
I tried to do a "./configure && make" in freebsd an got an error during make. If I use GNU make instead it works. I attach the error output from the make command and the generated Makefile.
I think the problem is that bsd make doesn't allow multiple files to b listed for a single include command. If you want to use bsd make, you have to configure with --disable-dependency-tracking. ./configure --help says
--disable-dependency-tracking Disable dependency tracking. Dependency tracking doesn't work with BSD make
Any suggestions other places to document that problem?
The Makefile.in does
DEP_FILES = $(SOURCES:.c=.$(OBJEXT).d) $(SOURCES:.c=.p$(OBJEXT).d) @DEP_INCLUDE@ $(DEP_FILES)
and "include" or "#" is substituted for @DEP_INCLUDE@, depending on whether or not dependency tracking is enabled.
Regards, /Niels