freebsd-skq/sys/boot/alpha/common
Peter Wemm b62ddc1363 Work around what looks like a bad make(1) bug. For some reason,
make(1) wants to build loader.sym *before* the .o files.  Eliminating
one seeminly intermediate step avoids the problem.  Somehow, it seems
that variables are not getting expanded at the right time.
Any explanations would be appreciated...

Changing:
${BASE}.sym: ${OBJS} ${LIBSTAND} ${LIBFICL} ${LIBALPHA} ${CRT} vers.o
	${LD} ...
To:
BASEOBJS= ${OBJS} ${LIBSTAND} ${LIBFICL} ${LIBALPHA} ${CRT} vers.o

${BASE}.sym: ${BASEOBJS}
	echo ${BASEOBJS}
	${LD} ...
.. the echo only shows LIBFICL, CRT and vers.o. ${OBJS} is not included.
2001-06-16 06:28:07 +00:00
..
conf.c Update loader logic to distinguish modules vs. files. 2000-05-01 17:41:25 +00:00
help.alpha Add more missing files from the reorganisation. 1999-09-07 09:08:09 +00:00
main.c Move the call to extend_heap() from main to start so that if our BSS 2000-10-25 23:36:01 +00:00
Makefile.common Work around what looks like a bad make(1) bug. For some reason, 2001-06-16 06:28:07 +00:00