Makefile.inc revision 1.2
1# $NetBSD: Makefile.inc,v 1.2 1995/09/18 19:52:15 chuck Exp $ 2 3.if !defined(__stand_makefile_inc) 4__stand_makefile_inc=1 5 6S= ../../../${R} 7 8RELOC_SUN4= 0x240000 9RELOC_SUN4C= 0x340000 10RELOC_SUN4M= 0x440000 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