freebsd-dev/sys/boot/alpha
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
..
boot1 Make a few functions inline to save space. 2000-10-25 23:24:43 +00:00
cdboot no longer needed now that we are able to build cdboot from sources again 2001-04-08 00:01:54 +00:00
common Work around what looks like a bad make(1) bug. For some reason, 2001-06-16 06:28:07 +00:00
libalpha One needs to introduce things with a `.file' directive before trying to 2001-05-28 09:52:21 +00:00
loader Install the loader manpages. 2000-10-26 21:47:59 +00:00
netboot Add $FreeBSD$ 2000-05-01 20:32:07 +00:00
Makefile Add back netboot since it compiles just fine. Note that you need a full 1999-11-03 20:19:30 +00:00
Makefile.inc Backout revision 1.7 which was a bad idea since it would force people 2000-10-27 09:36:34 +00:00