Makefile.booters revision 1.49
11.49Stsutsui# $NetBSD: Makefile.booters,v 1.49 2009/04/03 10:38:14 tsutsui Exp $ 21.42Slukem 31.42Slukem.include <bsd.sys.mk> # for HOST_SH 41.5Smellon 51.27Ssimonb# $S must correspond to the top of the 'sys' tree 61.27SsimonbS= ${.CURDIR}/../../../.. 71.27Ssimonb 81.43She.if !make(obj) && !make(clean) && !make(cleandir) 91.43She.BEGIN: 101.43She @[ -h machine ] || ln -s $S/arch/${MACHINE}/include machine 111.43She @[ -h pmax ] || ln -s $S/arch/${MACHINE}/include pmax 121.43She @[ -h mips ] || ln -s $S/arch/mips/include mips 131.43She.NOPATH: machine pmax mips 141.43She.endif 151.27SsimonbCLEANFILES+= machine pmax mips 161.1Sderaadt 171.27SsimonbBINMODE?= 444 181.41Ssimonb 191.41Ssimonb# XXX SHOULD NOT NEED TO DEFINE THESE! 201.41SsimonbLIBCRT0= 211.41SsimonbLIBC= 221.41SsimonbLIBCRTBEGIN= 231.41SsimonbLIBCRTEND= 241.34Sgmcgarry 251.27Ssimonb.PATH: ${.CURDIR}/../common 261.40SjdolecekAFLAGS+= -D_LOCORE -D_KERNEL -mno-abicalls 271.27Ssimonb# -I${.CURDIR}/../.. done by Makefile.inc 281.32SsimonbCPPFLAGS+= -nostdinc -D_STANDALONE -DNO_ABICALLS -D_NO_PROM_DEFINES \ 291.32Ssimonb -I${.OBJDIR} -I${S} 301.27Ssimonb# compiler flags for smallest code size 311.39SjdolecekCFLAGS= -ffreestanding -Os -g -mmemcpy -mno-abicalls -G 128 321.47StsutsuiCFLAGS+= -Wall -Wmissing-prototypes -Wstrict-prototypes -Wpointer-arith 331.47StsutsuiCFLAGS+= -Werror 341.32SsimonbLDBUG= -T $S/arch/mips/conf/stand.ldscript 351.27Ssimonb 361.42SlukemNETBSD_VERS!= ${HOST_SH} ${.CURDIR}/../../../../conf/osrelease.sh 371.27SsimonbCPPFLAGS+= -DNETBSD_VERS='"${NETBSD_VERS}"' 381.27Ssimonb 391.27SsimonbPRIMARY_LOAD_ADDRESS?= 0x80700000 401.27SsimonbSECONDARY_LOAD_ADDRESS?=0x80710000 411.37Sjdolecek 421.38SsimonbNOMAN= # defined 431.27Ssimonb 441.27Ssimonb.if defined(PRIMARY_PROG) 451.27SsimonbPROG= ${PRIMARY_PROG} 461.27SsimonbSRCS = start.S bootxx.c callvec.c 471.27SsimonbSRCS+= devopen.c conf.c rz.c 481.27SsimonbSRCS+= bootinit.S bootread.S clear_cache.S printf.S 491.27Ssimonb 501.27SsimonbLOAD_ADDRESS= ${PRIMARY_LOAD_ADDRESS} 511.27Ssimonb# Pick a number, any number... 521.27SsimonbPRIMARY_MAX_TOTAL!= expr 16 \* 1024 531.27Ssimonb 541.27SsimonbCPPFLAGS+= -DPRIMARY_BOOTBLOCK \ 551.27Ssimonb -DPRIMARY_LOAD_ADDRESS="${PRIMARY_LOAD_ADDRESS}" \ 561.27Ssimonb -DNO_GETCHAR \ 571.27Ssimonb -DLIBSA_NO_FS_SYMLINK -DLIBSA_NO_FS_WRITE \ 581.27Ssimonb -DLIBSA_NO_FS_CLOSE \ 591.27Ssimonb -DLIBSA_NO_DEV_CLOSE \ 601.48She -DLIBSA_NO_DEV_IOCTL \ 611.27Ssimonb -DLIBSA_SINGLE_DEVICE=rz \ 621.27Ssimonb -D"rzioctl(x,y,z)=EINVAL" -D"rzclose(f)=0" \ 631.27Ssimonb -DLIBSA_NO_TWIDDLE \ 641.27Ssimonb -DLIBSA_NO_FD_CHECKING \ 651.27Ssimonb -DLIBSA_NO_RAW_ACCESS \ 661.27Ssimonb -DLIBSA_NO_DISKLABEL_MSGS \ 671.49Stsutsui -DALLOC_FIRST_FIT 681.27Ssimonb 691.42SlukemCHECKSIZE_CMD?= SIZE=${SIZE} ${HOST_SH} ${.CURDIR}/../common/checksize.sh 701.27Ssimonb 711.27Ssimonb.elif defined(SECONDARY_PROG) 721.27SsimonbPROG= ${SECONDARY_PROG} 731.27SsimonbLOAD_ADDRESS= ${SECONDARY_LOAD_ADDRESS} 741.27SsimonbCPPFLAGS+= -DSECONDARY_BOOTBLOCK 751.30SjdolecekSRCS+= vers.c 761.30SjdolecekCLEANFILES+= vers.c 771.27Ssimonb.else 781.27Ssimonb# XXX ? 791.27Ssimonb.endif 801.18Ssimonb 811.27Ssimonb### find out what to use for libkern 821.27SsimonbKERN_AS= library 831.27Ssimonb.include "${S}/lib/libkern/Makefile.inc" 841.27SsimonbLIBKERN= ${KERNLIB} 851.18Ssimonb 861.18Ssimonb### find out what to use for libz 871.27Ssimonb.if defined(PRIMARY_PROG) 881.27SsimonbLIBZ= 891.27Ssimonb.else 901.18SsimonbZ_AS= library 911.18Ssimonb.include "${S}/lib/libz/Makefile.inc" 921.18SsimonbLIBZ= ${ZLIB} 931.27Ssimonb.endif 941.18Ssimonb 951.27Ssimonb### find out what to use for libsa 961.27SsimonbSA_AS= library 971.27Ssimonb.if defined(PRIMARY_PROG) 981.27SsimonbSAMISCMAKEFLAGS+=SA_INCLUDE_NET=no 991.27Ssimonb.endif 1001.27Ssimonb.if defined(SECONDARY_PROG) 1011.27SsimonbSAMISCMAKEFLAGS+=SA_USE_LOADFILE=yes SA_USE_CREAD=yes 1021.33SgmcgarrySAMISCMAKEFLAGS+=SA_INCLUDE_NET=yes 1031.22Ssimonb.endif 1041.27Ssimonb.include "${S}/lib/libsa/Makefile.inc" 1051.27SsimonbLIBSA= ${SALIB} 1061.18Ssimonb 1071.27SsimonbLIBS= ${LIBSA} ${LIBZ} ${LIBSA} ${LIBKERN} 1081.36Sgmcgarry 1091.36Sgmcgarry.include <bsd.own.mk> 1101.18Ssimonb 1111.30Sjdolecekvers.c: ${.CURDIR}/version 1121.42Slukem ${HOST_SH} ${S}/conf/newvers_stand.sh -N ${.CURDIR}/version "pmax" 1131.18Ssimonb 1141.30Sjdolecek${PROG}: machine mips pmax ${OBJS} ${LIBS} 1151.45Ssimonb ${LD} -Map ${PROG}.map -N -x -Ttext ${LOAD_ADDRESS} \ 1161.32Ssimonb ${LDBUG} -e start -o ${PROG} ${OBJS} ${LIBS} 1171.27Ssimonb @${SIZE} ${PROG} 1181.27Ssimonb.if defined(CHECKSIZE_CMD) 1191.27Ssimonb @${CHECKSIZE_CMD} ${PROG} ${PRIMARY_MAX_LOAD} ${PRIMARY_MAX_TOTAL} || \ 1201.27Ssimonb (rm -f ${PROG} ; false) 1211.33Sgmcgarry.endif 1221.33Sgmcgarry.if defined(DO_ECOFF_BINARY) 1231.33Sgmcgarry @echo -n "Creating ECOFF binary... " 1241.33Sgmcgarry @mv ${PROG} ${PROG}.elf 1251.34Sgmcgarry @${ELF2ECOFF} ${PROG}.elf ${PROG} 1261.33Sgmcgarry @echo done. 1271.27Ssimonb.endif 1281.18Ssimonb 1291.31Stsutsui.include <bsd.prog.mk> 1301.31Stsutsui 1311.27SsimonbCLEANFILES+= ${PROG}.map 1321.20Ssimonb 1331.20Ssimonbcleandir distclean: cleanlibdir 1341.20Ssimonb 1351.20Ssimonbcleanlibdir: 1361.44Sjmc -rm -rf lib 137