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