Makefile revision 1.10
1#	$NetBSD: Makefile,v 1.10 2004/12/24 10:56:23 joff Exp $
2
3.include <bsd.own.mk>
4.include "${NETBSDSRCDIR}/distrib/common/Makefile.distrib"
5
6RAMDISKDIR!=	cd ${.CURDIR}/../ramdisk && ${PRINTOBJDIR}
7RAMDISK=	${RAMDISKDIR}/ramdisk.fs
8
9.if ${MACHINE_ARCH} == "arm"
10# Little endian platforms.
11MDSETTARGETS=		ADI_BRH_INSTALL		${RAMDISK}	-	\
12			INTEGRATOR_INSTALL	${RAMDISK}	-	\
13			IQ80310_INSTALL		${RAMDISK}	-	\
14			IQ80321_INSTALL		${RAMDISK}	-	\
15			TS7200_INSTALL		${RAMDISK}	- 	\
16			TEAMASA_NPWR_INSTALL	${RAMDISK}	-
17.else
18# Big endian platforms.
19MDSETTARGETS=		ADI_BRH_INSTALL		${RAMDISK}	-
20.endif
21MDSET_RELEASEDIR=	installation/instkernel
22
23MDSET_SUFFIXES.-=	srec create-srec  bin create-bin
24create-srec=		${OBJCOPY} -O srec ${.TARGET:R} ${.TARGET}
25create-bin=		${OBJCOPY} -O binary ${.TARGET:R} ${.TARGET}
26
27
28.include "${DISTRIBDIR}/common/Makefile.mdset"
29
30.include <bsd.prog.mk>
31