d5ecd48d67
Addresses port-mvme68k/16282.
24 lines
521 B
Makefile
24 lines
521 B
Makefile
# $NetBSD: Makefile,v 1.15 2002/04/10 18:43:21 scw Exp $
|
|
|
|
DEFS= -DSUN_BOOTPARAMS
|
|
|
|
SRCS= boot.c conf.c devopen.c
|
|
SRCS+= if_ie.c if_le.c
|
|
PROG= netboot
|
|
LIBS= ${LIBSA} ${LIBBUG}
|
|
DPADD= ${LIBS}
|
|
CLEANFILES+= netboot.bin
|
|
|
|
netboot.bin: ${PROG}
|
|
${OBJCOPY} -O binary ${.OBJDIR}/netboot ${.TARGET}
|
|
|
|
.include "../Makefile.booters"
|
|
|
|
all realall: netboot.bin
|
|
|
|
install: netboot.bin
|
|
${INSTALL_FILE} ${STRIPFLAG} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
|
|
${.OBJDIR}/netboot.bin ${DESTDIR}${MDEC_DIR}/netboot
|
|
|
|
.include <bsd.prog.mk>
|