Module Name: src
Committed By: joerg
Date: Mon Jan 24 19:27:18 UTC 2011
Modified Files:
src/sys/arch/ofppc/stand/ofwboot: Makefile
Log Message:
Ensure that NOMAN is defined earlier.
To generate a diff of this commit:
cvs rdiff -u -r1.26 -r1.27 src/sys/arch/ofppc/stand/ofwboot/Makefile
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/arch/ofppc/stand/ofwboot/Makefile
diff -u src/sys/arch/ofppc/stand/ofwboot/Makefile:1.26 src/sys/arch/ofppc/stand/ofwboot/Makefile:1.27
--- src/sys/arch/ofppc/stand/ofwboot/Makefile:1.26 Sat Jan 22 19:19:21 2011
+++ src/sys/arch/ofppc/stand/ofwboot/Makefile Mon Jan 24 19:27:18 2011
@@ -1,10 +1,9 @@
-# $NetBSD: Makefile,v 1.26 2011/01/22 19:19:21 joerg Exp $
+# $NetBSD: Makefile,v 1.27 2011/01/24 19:27:18 joerg Exp $
S!= cd ${.CURDIR}/../../../.. ; pwd
-.include <bsd.own.mk>
-
PROG= ofwboot
+NOMAN= # defined
SRCS= ofwstart.S Locore.c boot.c ofdev.c net.c netif_of.c
SRCS+= mbr.c rdb.c vers.c
CFLAGS+= -msoft-float -Wno-main -ffreestanding
@@ -13,6 +12,9 @@
#CPPFLAGS+= -DOFWDUMP
CPPFLAGS+= -D_STANDALONE -DSUPPORT_DHCP -I${.CURDIR}
CPPFLAGS+= -DHEAP_VARIABLE
+
+.include <bsd.own.mk>
+
DBG= -Os -mmultiple
SRCS+= ofwmagic.S
@@ -21,7 +23,6 @@
SRCS+= byteorder.c
.PATH: ${S}/lib/libsa
-NOMAN= # defined
STRIPFLAG=
BINMODE= 444