summaryrefslogtreecommitdiffstats
path: root/sys
diff options
context:
space:
mode:
authorasami <asami@FreeBSD.org>1997-05-13 06:23:21 +0000
committerasami <asami@FreeBSD.org>1997-05-13 06:23:21 +0000
commit441849aead6b2a54a68135a0250b55ecdcfa70b3 (patch)
tree130b7b9991d8b94585f044ded694fa5d036c5dd9 /sys
parent6c574c5c4f7c96956e10ad9caa299709506227fe (diff)
downloadFreeBSD-src-441849aead6b2a54a68135a0250b55ecdcfa70b3.zip
FreeBSD-src-441849aead6b2a54a68135a0250b55ecdcfa70b3.tar.gz
Add ${CFLAGS} to makerom command line. Note: don't add ${LDFLAGS} here,
it has a bunch of extra stuff defined above. While I'm here, change "$(CFLAGS)" to "${CFLAGS}" to make all the rules uniform.
Diffstat (limited to 'sys')
-rw-r--r--sys/i386/boot/netboot/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/i386/boot/netboot/Makefile b/sys/i386/boot/netboot/Makefile
index 2238bfd..c04adc9 100644
--- a/sys/i386/boot/netboot/Makefile
+++ b/sys/i386/boot/netboot/Makefile
@@ -55,10 +55,10 @@ RELOCADDR=0x90000
${CC} ${CFLAGS} -DBOOTROM -o ${.TARGET} -c ${.IMPSRC}
ns8390.o: ns8390.c
- ${CC} $(CFLAGS) $(NS8390) -o ${.TARGET} -c $<
+ ${CC} ${CFLAGS} $(NS8390) -o ${.TARGET} -c $<
makerom: makerom.c
- ${CC} -o ${.TARGET} -DROMSIZE=${ROMSIZE} ${.CURDIR}/makerom.c
+ ${CC} ${CFLAGS} -o ${.TARGET} -DROMSIZE=${ROMSIZE} ${.CURDIR}/makerom.c
nb8390.rom: makerom start2.ro ${SRCS:N*.h:R:S/$/.o/g} ns8390.o
${LD} ${LDFLAGS} -o ${.TARGET} ${OBJS:S/start2.o/start2.ro/} ns8390.o
OpenPOWER on IntegriCloud