diff options
Diffstat (limited to 'release/floppies/boot/crunch/Makefile')
-rw-r--r-- | release/floppies/boot/crunch/Makefile | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/release/floppies/boot/crunch/Makefile b/release/floppies/boot/crunch/Makefile new file mode 100644 index 0000000000000..90ee8bcdef60a --- /dev/null +++ b/release/floppies/boot/crunch/Makefile @@ -0,0 +1,15 @@ +OBJTOP=../../../.. +SYSINSTALL= ${OBJTOP}/release/sysinstall/sysinstall + +all: ${SYSINSTALL} + +${SYSINSTALL}: + cd ${.CURDIR}/../../../../release/sysinstall ; make + @if ! test -f ${SYSINSTALL} ; then \ + ${ECHO} "sysinstall not made" ; \ + ${ECHO} "Possibly need to 'make obj' for floppies and sysinstall" ; \ + exit 1; \ + fi + +.include "../../mk/makecrunch.mk" + |