summaryrefslogtreecommitdiff
path: root/sys/arch/mvme88k/stand/openbsd/netboot/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'sys/arch/mvme88k/stand/openbsd/netboot/Makefile')
-rw-r--r--sys/arch/mvme88k/stand/openbsd/netboot/Makefile31
1 files changed, 0 insertions, 31 deletions
diff --git a/sys/arch/mvme88k/stand/openbsd/netboot/Makefile b/sys/arch/mvme88k/stand/openbsd/netboot/Makefile
deleted file mode 100644
index dd675f294da..00000000000
--- a/sys/arch/mvme88k/stand/openbsd/netboot/Makefile
+++ /dev/null
@@ -1,31 +0,0 @@
-# $Id: Makefile,v 1.2 1997/04/27 20:56:33 millert Exp $
-
-RELOC=0x3F0000
-
-S= ${.CURDIR}/../../../..
-DEFS= -DSTANDALONE -DSUN_BOOTPARAMS
-INCPATH=-I${.CURDIR} -I${.CURDIR}/../libsa -I${S} -I${S}/lib/libsa
-CFLAGS= -O2 ${INCPATH} ${DEFS} ${COPTS}
-
-.include "${S}/arch/${MACHINE}/stand/libsa/Makefile.inc"
-.PATH: ${S}/arch/${MACHINE}/stand/libsa
-SRTOBJ= SRT0.o SRT1.o
-
-SRCS= boot.c conf.c version.c dev_net.c
-SRCS+= if_ie.c if_le.c
-OBJS= ${SRTOBJ} ${SRCS:S/.c/.o/g}
-
-all: netboot.bin
-
-netboot: ${OBJS} ${LIBSA}
- ${LD} -s -N -T ${RELOC} -e start -o $@ ${OBJS} ${LIBSA}
- @size $@
-
-netboot.bin: netboot
- dd ibs=32 skip=1 if=netboot of=$@
-
-install:
- ${INSTALL} ${INSTALL_COPY} -o ${LIBOWN} -g ${LIBGRP} -m ${LIBMODE} \
- netboot.bin ${DESTDIR}${MDEC_DIR}/netboot
-
-.include <bsd.prog.mk>