freebsd-src/release/floppies/makecrunch.mk
Julian Elischer 43e4c0c1fa stand alone (kinda) floppy generation..
you still need tohave done a make world and have made 'sysinstall'
this should not interfere with existing code as it's standalone.
write_mfs_in_kernel.c is duplicated alsewhere.. one will go ..
1996-05-21 01:12:48 +00:00

29 lines
485 B
Makefile

SYSINSTALL=../../../../release/sysinstall/sysinstall
NOCRYPT?=yes
all: ${SYSINSTALL} crunch
${SYSINSTALL}:
@echo "you need to make sysinstall first"
false
crunch:
-crunchgen ${.CURDIR}/crunch.conf
${MAKE} -f crunch.mk all NOCRYP=${NOCRYPT} \
"CFLAGS=${CFLAGS} -DCRUNCHED_BINARY"
clean:
rm -f *.o *.stub *.lo *_stub.c *.mk \
crunch.cache \
crunch.mk \
crunch.c \
crunch \
.tmp_*
install:
@echo " No idea what to do to install yet"
.include <bsd.prog.mk>