Makefile revision 1.10
1#	$NetBSD: Makefile,v 1.10 2011/02/20 07:59:52 matt Exp $
2
3PROG=	ip30boot
4NOMAN=	# defined
5
6SRCS=	start.S boot.c bootinfo.c conf.c devopen.c putchar.c getchar.c \
7	getopt.c disk.c arcbios_calls.S
8
9
10CLEANFILES+=	boot.map
11
12.include <bsd.own.mk>
13.include <bsd.sys.mk>		# for HOST_SH
14
15# $S must correspond to the top of the 'sys' tree
16S=	${.CURDIR}/../../../..
17
18BINMODE?=	444
19
20realall: ${PROG}
21
22.PATH:		${.CURDIR}/../common
23.PATH.S:	${S}/dev/arcbios
24AFLAGS+=	-D_LOCORE -D_KERNEL -mno-abicalls -mabi=64 -D_LP64
25CPPFLAGS+=	-nostdinc -D_STANDALONE -DNO_ABICALLS -I${.OBJDIR} -I${S}
26# compiler flags for smallest code size
27CFLAGS=		-ffreestanding -Os -Wall -Werror -mno-abicalls -msoft-float -G 1024 -mabi=64 -D_LP64
28LDBUG=		-T $S/arch/mips/conf/stand.ldscript
29NETBSD_VERS!=	${HOST_SH} ${.CURDIR}/../../../../conf/osrelease.sh
30CPPFLAGS+=	-DNETBSD_VERS='"${NETBSD_VERS}"'
31
32CPPFLAGS+=	-Dsgimips
33
34MACHINE_ARCH=	mips64eb
35
36.include "${S}/dev/arcbios/Makefile.inc"
37
38# We load the kernel at 420K in from the start of RAM to give the boot
39# loader plenty of breathing room.  Load the boot loader starting at
40# the second page of RAM.
41
42LOAD_ADDRESS_IP30?=	0xa800000020080000
43
44# if there is a 'version' file, add rule for vers.c and add it to SRCS
45# and CLEANFILES
46.if exists(version)
47.PHONY: vers.c
48vers.c: ${.CURDIR}/version
49	${HOST_SH} ${S}/conf/newvers_stand.sh ${${MKREPRO} == "yes" :?:-D} \
50	    ${.CURDIR}/version "sgimips"
51
52SRCS+=	vers.c
53CLEANFILES+= vers.c
54.endif
55
56### find out what to use for libkern
57KERN_AS=	library
58KERNMISCMAKEFLAGS+=	LD="${LD} -m elf64btsmip" RANLIB="true"
59.include "${S}/lib/libkern/Makefile.inc"
60LIBKERN=	${KERNLIB}
61
62### find out what to use for libz
63Z_AS=		library
64ZMISCMAKEFLAGS+=	LD="${LD} -m elf64btsmip" RANLIB="true"
65.include "${S}/lib/libz/Makefile.inc"
66LIBZ=		${ZLIB}
67
68### find out what to use for libsa
69SA_AS=		library
70SAMISCMAKEFLAGS+=	SA_USE_LOADFILE=yes SA_USE_CREAD=yes \
71			LD="${LD} -m elf64btsmip" RANLIB="true"
72.include "${S}/lib/libsa/Makefile.inc"
73LIBSA=		${SALIB}
74
75
76LIBS=		${LIBSA} ${LIBZ} ${LIBSA} ${LIBKERN}
77
78ip30boot: ${OBJS} ${LIBS}
79	${_MKTARGET_LINK}
80	${LD} -m elf64btsmip -Map boot.map -x -Ttext ${LOAD_ADDRESS_IP30} \
81		${LDBUG} -e start -o ${.TARGET} ${OBJS} ${LIBS}
82	${SIZE} ${.TARGET}
83
84cleandir distclean: .WAIT cleanlibdir
85cleanlibdir:
86	-rm -rf lib
87
88.include <bsd.klinks.mk>
89.include <bsd.prog.mk>
90