Home | History | Annotate | Line # | Download | only in netboot
Makefile revision 1.1
      1  1.1  gmcgarry # $NetBSD: Makefile,v 1.1 2002/02/23 21:44:00 gmcgarry Exp $
      2  1.1  gmcgarry 
      3  1.1  gmcgarry SECONDARY_PROG=	netboot
      4  1.1  gmcgarry 
      5  1.1  gmcgarry SRCS=		start.S boot.c
      6  1.1  gmcgarry SRCS+=		bootinfo.c callvec.c clock.c conf.c devopen.c dev_net.c
      7  1.1  gmcgarry SRCS+=		if_prom.c putchar.c rz.c
      8  1.1  gmcgarry SRCS+=		bootinit.S bootread.S getchar.S startprog.S
      9  1.1  gmcgarry 
     10  1.1  gmcgarry CPPFLAGS+=	-DBOOT_TYPE_NAME='"Netboot"' \
     11  1.1  gmcgarry 		-DBOOTNET -DSUPPORT_BOOTP -DSUPPORT_DHCP -DFILL_ARPCACHE
     12  1.1  gmcgarry 
     13  1.1  gmcgarry #CPPFLAGS+=	-DBOOTP_DEBUG -DNETIF_DEBUG -DETHER_DEBUG -DNFS_DEBUG \
     14  1.1  gmcgarry #		-DRPC_DEBUG -DNET_DEBUG -DDEBUG -DPARANOID -DARP_DEBUG \
     15  1.1  gmcgarry #		-DDEBUG_VAL=1
     16  1.1  gmcgarry 
     17  1.1  gmcgarry DO_ECOFF_BINARY=1
     18  1.1  gmcgarry 
     19  1.1  gmcgarry .include "../Makefile.booters"
     20