Makefile.inc revision 1.1
1#	$NetBSD: Makefile.inc,v 1.1 1995/09/16 23:20:23 pk Exp $
2
3.if !defined(__stand_makefile_inc)
4__stand_makefile_inc=1
5
6S= ../../../${R}
7
8RELOC_SUN4=	240000
9RELOC_SUN4C=	340000
10RELOC_SUN4M=	440000
11
12# Note: a `RELOC' value of 0x340000 seems to work on most machines
13RELOC?=		${RELOC_SUN4C}
14
15INCLUDES+=	-I.. -I${S}/arch -I${S} -I${S}/lib/libsa
16DEFS+=		-DSTANDALONE -DRELOC=${RELOC} -DSUN4 -DSUN4C -DSUN_BOOTPARAMS
17CFLAGS+=	-O2 ${INCLUDES} ${DEFS}
18
19srt0.o: srt0.S
20	${CC} ${CFLAGS} -DLOCORE -c ${.IMPSRC}
21
22.endif
23