Home | History | Annotate | Line # | Download | only in smallnet
Makefile revision 1.1.2.1
      1  1.1.2.1  thorpej #	$NetBSD: Makefile,v 1.1.2.1 1999/06/21 00:59:15 thorpej Exp $
      2      1.1   simonb #	@(#)Makefile	8.3 (Berkeley) 2/16/94
      3      1.1   simonb 
      4      1.1   simonb S=	${.CURDIR}/../../../..
      5      1.1   simonb 
      6      1.1   simonb KERNELSIZE!=	expr 400 \* 1024
      7      1.1   simonb 
      8      1.1   simonb SUBDIR=		setnetimage
      9      1.1   simonb 
     10      1.1   simonb PROG=		smallnet
     11      1.1   simonb RELOC=		80300000		# 3MB - should work on 4MB machines
     12      1.1   simonb SRCS=		start.S smallnet.c
     13      1.1   simonb BOOTDEFADD=	-DBOOT_TYPE_NAME='"Compressed Kernel Network"' \
     14      1.1   simonb 		-DRELOC=0x${RELOC} -DKERNELSIZE=${KERNELSIZE}
     15      1.1   simonb VERSIONFILE=	${.CURDIR}/version
     16      1.1   simonb .PATH:  	${.CURDIR}/../lib
     17      1.1   simonb 
     18      1.1   simonb .include <bsd.subdir.mk>
     19      1.1   simonb .include <bsd.obj.mk>
     20      1.1   simonb .include "../Makefile.booters"
     21