7ecca3ca2e
now handled in src/sys/lib/libkern/Makefile.
93 lines
2.2 KiB
Makefile
93 lines
2.2 KiB
Makefile
# $NetBSD: Makefile,v 1.6 2006/08/28 13:42:39 tsutsui Exp $
|
|
|
|
.include <bsd.own.mk>
|
|
.include <bsd.sys.mk> # for ${HOST_SH}
|
|
|
|
S!= cd ${.CURDIR}/../../../..; pwd
|
|
|
|
PROG= boot
|
|
MKMAN= no # defined
|
|
STRIPFLAG=
|
|
BINMODE= 444
|
|
|
|
NETBSD_VERS!= ${HOST_SH} ${S}/conf/osrelease.sh
|
|
|
|
SRCS= start.S
|
|
SRCS+= boot.c bootinfo.c conf.c devopen.c disk.c getchar.c getopt.c putchar.c
|
|
|
|
# XXX SHOULD NOT NEED TO DEFINE THESE!
|
|
LIBCRT0=
|
|
LIBC=
|
|
LIBCRTBEGIN=
|
|
LIBCRTEND=
|
|
|
|
AFLAGS= -x assembler-with-cpp -traditional-cpp -mno-abicalls -mips2
|
|
AFLAGS+= -D_LOCORE -D_KERNEL
|
|
CFLAGS= -Os -mmemcpy -G 1024
|
|
CFLAGS+= -ffreestanding -mno-abicalls -msoft-float -mips2
|
|
CFLAGS+= -Werror -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith
|
|
CPPFLAGS+= -nostdinc -I. -I${S}
|
|
CPPFLAGS+= -D_STANDALONE -DNO_ABICALLS -D${MACHINE}
|
|
CPPFLAGS+= -DLIBSA_USE_MEMSET -DLIBSA_USE_MEMCPY
|
|
CPPFLAGS+= -DNETBSD_VERS='"${NETBSD_VERS}"'
|
|
#CPPFLAGS+= -DBOOT_DEBUG
|
|
LDSCRIPT= ${S}/arch/mips/conf/stand.ldscript
|
|
TEXTADDR= 0x80f00000
|
|
|
|
.if !make(obj) && !make(clean) && !make(cleandir)
|
|
.BEGIN: machine mips
|
|
.NOPATH: machine mips
|
|
|
|
machine::
|
|
-rm -f $@
|
|
ln -s ${S}/arch/${MACHINE}/include $@
|
|
|
|
mips::
|
|
-rm -f $@
|
|
ln -s ${S}/arch/mips/include $@
|
|
.endif
|
|
|
|
CLEANFILES+= machine mips
|
|
|
|
# if there is a 'version' file, add rule for vers.c and add it to SRCS
|
|
# and CLEANFILES
|
|
.if exists(version)
|
|
.PHONY: vers.c
|
|
vers.c: ${.CURDIR}/version
|
|
${HOST_SH} ${S}/conf/newvers_stand.sh ${.CURDIR}/version ${MACHINE}
|
|
|
|
SRCS+= vers.c
|
|
CLEANFILES+= vers.c
|
|
.endif
|
|
|
|
### find out what to use for libsa
|
|
SAMISCMAKEFLAGS= SA_USE_CREAD=yes SA_USE_LOADFILE=yes
|
|
.include "${S}/lib/libsa/Makefile.inc"
|
|
LIBSA= ${SALIB}
|
|
|
|
### find out what to use for libkern
|
|
.include "${S}/lib/libkern/Makefile.inc"
|
|
LIBKERN= ${KERNLIB}
|
|
|
|
### find out what to use for libz
|
|
.include "${S}/lib/libz/Makefile.inc"
|
|
LIBZ= ${ZLIB}
|
|
|
|
LIBS= ${LIBSA} ${LIBKERN} ${LIBZ}
|
|
|
|
cleandir distclean: cleanlibdir
|
|
cleanlibdir:
|
|
-rm -rf lib
|
|
|
|
${PROG}: ${OBJS} ${LIBS}
|
|
${LD} -Map ${PROG}.map -N -x -Ttext ${TEXTADDR} -T ${LDSCRIPT} \
|
|
-e start -o ${PROG}.elf ${OBJS} ${LIBS}
|
|
@${SIZE} ${PROG}.elf
|
|
${OBJCOPY} --impure -O ecoff-littlemips \
|
|
-R .pdr -R .mdebug.abi32 -R .comment -R .ident \
|
|
${PROG}.elf ${.TARGET}
|
|
|
|
CLEANFILES+= ${PROG}.elf ${PROG}.map
|
|
|
|
.include <bsd.prog.mk>
|