c57e984258
Install the biosboot as /usr/mdec/boot[12] Make the traditional links from [swf]dboot and boot[swf]d to boot[12] files. Install dosboot as /usr/mdec/boot/fbsdboot.exe
22 lines
337 B
Makefile
22 lines
337 B
Makefile
# $Id$
|
|
#
|
|
|
|
MPROG= fbsdboot.exe
|
|
CLEANFILES+= ${MPROG}
|
|
BINDIR= /usr/mdec
|
|
BINMODE= 444
|
|
NOMAN=
|
|
STRIP=
|
|
|
|
all: ${MPROG}
|
|
|
|
install: ${MPROG}
|
|
${INSTALL} ${COPY} ${STRIP} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
|
|
${INSTALLFLAGS} ${MPROG} ${DESTDIR}${BINDIR}
|
|
|
|
|
|
${MPROG}: ${MPROG}.uu
|
|
uudecode < ${.CURDIR}/${MPROG}.uu
|
|
|
|
.include <bsd.prog.mk>
|