Home | History | Annotate | Line # | Download | only in smallnet
      1  1.2  simonb #	$NetBSD: Makefile,v 1.2 1999/11/27 23:57:43 simonb Exp $
      2  1.1  simonb #	@(#)Makefile	8.3 (Berkeley) 2/16/94
      3  1.1  simonb 
      4  1.2  simonb KERNELSIZE!=		expr 400 \* 1024
      5  1.1  simonb 
      6  1.2  simonb SUBDIR=			setnetimage
      7  1.1  simonb 
      8  1.2  simonb SECONDARY_PROG=		smallnet
      9  1.2  simonb SECONDARY_LOAD_ADDRESS=	0x80300000	# 3MB - should work on 4MB machines
     10  1.2  simonb SRCS=			start.S smallnet.c
     11  1.2  simonb SRCS+=			bootinfo.c callvec.c putchar.c
     12  1.1  simonb 
     13  1.2  simonb CPPFLAGS+=		-DBOOT_TYPE_NAME='"Compressed Kernel Network"' \
     14  1.2  simonb 			-DRELOC=${SECONDARY_LOAD_ADDRESS} \
     15  1.2  simonb 			-DKERNELSIZE=${KERNELSIZE}
     16  1.1  simonb 
     17  1.1  simonb .include <bsd.subdir.mk>
     18  1.1  simonb .include <bsd.obj.mk>
     19  1.1  simonb .include "../Makefile.booters"
     20