11.2Ssimonb# $NetBSD: Makefile,v 1.2 1999/11/27 23:57:43 simonb Exp $ 21.1Ssimonb# @(#)Makefile 8.3 (Berkeley) 2/16/94 31.1Ssimonb 41.2SsimonbKERNELSIZE!= expr 400 \* 1024 51.1Ssimonb 61.2SsimonbSUBDIR= setnetimage 71.1Ssimonb 81.2SsimonbSECONDARY_PROG= smallnet 91.2SsimonbSECONDARY_LOAD_ADDRESS= 0x80300000 # 3MB - should work on 4MB machines 101.2SsimonbSRCS= start.S smallnet.c 111.2SsimonbSRCS+= bootinfo.c callvec.c putchar.c 121.1Ssimonb 131.2SsimonbCPPFLAGS+= -DBOOT_TYPE_NAME='"Compressed Kernel Network"' \ 141.2Ssimonb -DRELOC=${SECONDARY_LOAD_ADDRESS} \ 151.2Ssimonb -DKERNELSIZE=${KERNELSIZE} 161.1Ssimonb 171.1Ssimonb.include <bsd.subdir.mk> 181.1Ssimonb.include <bsd.obj.mk> 191.1Ssimonb.include "../Makefile.booters" 20