Home | History | Annotate | Line # | Download | only in boot
Makefile revision 1.1.4.2
      1  1.1.4.2  rmind #	$NetBSD: Makefile,v 1.1.4.2 2011/03/05 20:49:59 rmind Exp $
      2  1.1.4.2  rmind #	@(#)Makefile	8.3 (Berkeley) 2/16/94
      3  1.1.4.2  rmind 
      4  1.1.4.2  rmind SECONDARY_PROG=	boot.emips
      5  1.1.4.2  rmind STRIPFLAG=
      6  1.1.4.2  rmind 
      7  1.1.4.2  rmind SRCS=		start.S boot.c
      8  1.1.4.2  rmind SRCS+=		printf.c putchar.c prom_iface.c
      9  1.1.4.2  rmind SRCS+=		bootinfo.c clock.c conf.c devopen.c dev_net.c
     10  1.1.4.2  rmind SRCS+=		enic.c ace.c raw.c init_board.c
     11  1.1.4.2  rmind 
     12  1.1.4.2  rmind CPPFLAGS+=	-DBOOT_TYPE_NAME='"Netboot"' \
     13  1.1.4.2  rmind 		-DLIBSA_BOOTABLE_FILES_WILDCARD=\'?\' \
     14  1.1.4.2  rmind 		-DBOOTNET -DSUPPORT_BOOTP -DSUPPORT_DHCP
     15  1.1.4.2  rmind 
     16  1.1.4.2  rmind #CPPFLAGS+=	-DBOOTP_DEBUG -DNETIF_DEBUG -DETHER_DEBUG -DNFS_DEBUG \
     17  1.1.4.2  rmind #		-DRPC_DEBUG -DNET_DEBUG -DDEBUG -DPARANOID -DARP_DEBUG \
     18  1.1.4.2  rmind #		-DDEBUG_VAL=1
     19  1.1.4.2  rmind 
     20  1.1.4.2  rmind # Copy boot.emips to / as well.
     21  1.1.4.2  rmind afterinstall:
     22  1.1.4.2  rmind 	${INSTALL_FILE} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
     23  1.1.4.2  rmind 	    ${STRIPFLAG} ${DESTDIR}${BINDIR}/${PROG} ${DESTDIR}/${PROG}
     24  1.1.4.2  rmind 
     25  1.1.4.2  rmind .include "../Makefile.booters"
     26