Home | History | Annotate | Line # | Download | only in ofwboot
Makefile revision 1.24
      1  1.24        tv #	$NetBSD: Makefile,v 1.24 2001/12/12 01:49:45 tv Exp $
      2   1.1    tsubai 
      3   1.1    tsubai S=	${.CURDIR}/../../../..
      4   1.1    tsubai 
      5   1.1    tsubai PROG=		ofwboot
      6  1.12  dmcmahil FILES=		${PROG}.elf ${PROG}.xcf
      7  1.20      matt SRCS=		Locore.c boot.c ofdev.c hfs.c net.c netif_of.c vers.c
      8   1.7  wrstuden XCOFFXTRA=	Xcoffxtra.c
      9   1.7  wrstuden XCOFFXTRAOBJ=	Xcoffxtra.o
     10  1.21      matt CFLAGS+=	-msoft-float -Wno-main
     11   1.9    tsubai #CFLAGS+=	-DDEBUG -DNETIF_DEBUG
     12  1.20      matt CPPFLAGS+=	-D_STANDALONE -DSUPPORT_DHCP -I${.CURDIR}
     13  1.14    tsubai DBG=		-Os -mmultiple
     14   1.9    tsubai 
     15   1.1    tsubai .PATH:		${S}/arch/powerpc/powerpc
     16   1.1    tsubai SRCS+=		ofwmagic.S
     17   1.9    tsubai 
     18  1.24        tv NOMAN=		# defined
     19   1.1    tsubai STRIPFLAG=
     20   1.1    tsubai BINMODE=	444
     21   1.1    tsubai 
     22   1.7  wrstuden .if !defined(FIXCOFF)
     23  1.23        tv .include <bsd.own.mk>
     24  1.23        tv 
     25  1.23        tv FIXCOFFDIR!=	cd ${.CURDIR}/../fixcoff && ${PRINTOBJDIR}
     26   1.7  wrstuden FIXCOFF=	${FIXCOFFDIR}/fixcoff
     27   1.7  wrstuden FIXCOFFTARG=	${FIXCOFF}
     28   1.7  wrstuden 
     29   1.7  wrstuden ${FIXCOFF}:
     30  1.18   garbled 	(cd ${.CURDIR}/../fixcoff; ${MAKE})
     31   1.7  wrstuden 
     32   1.7  wrstuden .else
     33   1.7  wrstuden FIXCOFFTARG=
     34   1.7  wrstuden .endif
     35   1.7  wrstuden 
     36   1.1    tsubai NEWVERSWHAT=	"OpenFirmware Boot"
     37   1.1    tsubai 
     38   1.1    tsubai # For now...
     39   1.1    tsubai #RELOC=		20000
     40  1.17  wrstuden RELOC=		600000
     41   1.1    tsubai 
     42   1.1    tsubai ENTRY=		_start
     43   1.1    tsubai 
     44  1.15    tsubai CLEANFILES+=	vers.c ${PROG}.elf ${PROG}.mrg ${PROG}.xcf
     45   1.1    tsubai 
     46   1.5    tsubai CPPFLAGS+=	-I. -I${.CURDIR}/../../.. -I${.CURDIR}/../../../..
     47   1.1    tsubai CPPFLAGS+=	-DRELOC=0x${RELOC}
     48   1.1    tsubai #CPPFLAGS+=	-DXCOFF_GLUE		# for booting PCI Powermacs
     49   1.1    tsubai 
     50   1.8   mycroft CLEANFILES+= ${XCOFFXTRAOBJ}
     51   1.5    tsubai 
     52   1.5    tsubai .BEGIN:
     53   1.5    tsubai 	@[ -h machine ] || ln -s ${S}/arch/${MACHINE}/include machine
     54   1.5    tsubai 	@[ -h powerpc ] || ln -s ${S}/arch/powerpc/include powerpc
     55   1.8   mycroft .NOPATH: machine powerpc
     56   1.8   mycroft CLEANFILES+= machine powerpc
     57   1.5    tsubai 
     58   1.1    tsubai ### find out what to use for libkern
     59   1.1    tsubai KERN_AS=	library
     60   1.1    tsubai .include "${S}/lib/libkern/Makefile.inc"
     61   1.1    tsubai LIBKERN=	${KERNLIB}
     62   1.1    tsubai 
     63   1.1    tsubai ### find out what to use for libz
     64   1.1    tsubai Z_AS=		library
     65   1.1    tsubai .include "${S}/lib/libz/Makefile.inc"
     66   1.1    tsubai LIBZ=		${ZLIB}
     67   1.1    tsubai 
     68   1.1    tsubai ### find out what to use for libsa
     69   1.1    tsubai SA_AS=		library
     70   1.5    tsubai SAMISCMAKEFLAGS= SA_USE_CREAD=yes SA_USE_LOADFILE=yes
     71   1.1    tsubai .include "${S}/lib/libsa/Makefile.inc"
     72   1.1    tsubai LIBSA=		${SALIB}
     73   1.1    tsubai 
     74  1.13  jdolecek .PHONY: vers.c
     75  1.13  jdolecek vers.c: version
     76  1.13  jdolecek 	sh ${S}/conf/newvers_stand.sh ${.CURDIR}/version "macppc" ${NEWVERSWHAT}
     77  1.13  jdolecek 
     78   1.7  wrstuden ${PROG}: ${OBJS} ${XCOFFXTRAOBJ} ${LIBSA} ${LIBZ} ${LIBKERN} ${FIXCOFFTARG}
     79   1.7  wrstuden 	${LD} -s -N -Ttext ${RELOC} -Bstatic -o ${PROG}.elf \
     80  1.14    tsubai 	    ${OBJS} ${LIBSA} ${LIBZ} ${LIBKERN}
     81   1.5    tsubai 	${OBJCOPY} -O binary ${PROG}.elf ${PROG}
     82   1.7  wrstuden 	${LD} -s -N -T ${.CURDIR}/../fixcoff/elf32_powerpc_merge.x -e _entry \
     83   1.7  wrstuden 	    -Ttext ${RELOC} -Bstatic -o ${PROG}.mrg  ${XCOFFXTRAOBJ} \
     84  1.14    tsubai 	    ${OBJS} ${LIBSA} ${LIBZ} ${LIBKERN}
     85   1.7  wrstuden 	${OBJCOPY} -O aixcoff-rs6000 -R .comment -R .note \
     86   1.7  wrstuden 	    ${PROG}.mrg ${PROG}.xcf
     87   1.7  wrstuden 	${FIXCOFF} ${PROG}.xcf
     88   1.1    tsubai 
     89   1.1    tsubai .include <bsd.prog.mk>
     90