1 # $NetBSD: Makefile.inc,v 1.17 2000/03/26 15:48:22 fredb Exp $ 2 # 3 # etc.i386/Makefile.inc -- i386-specific etc Makefile targets 4 # 5 6 # These are packaged and distributed 7 EXTRA_KERNELS+= GENERIC_TINY 8 9 # These are for use by the bootfloppy construction tools 10 BUILD_KERNELS+= INSTALL INSTALL_TINY 11 12 INSTALLATION_DIRS+= ${RELEASEDIR}/binary/sets/Split 13 14 snap_md_post: 15 # Build the boot floppies and install them 16 .ifndef UPDATE 17 cd ${.CURDIR}/../distrib/i386/floppies && ${MAKE} clean 18 .endif 19 cd ${.CURDIR}/../distrib/i386/floppies && \ 20 ${MAKE} depend && ${MAKE} ${_J} && ${MAKE} release 21 sh ../distrib/sets/makesums -t ${RELEASEDIR}/installation/floppies '*.gz' 22 # Make the split sets in place 23 cd ${RELEASEDIR}/binary/sets/Split; for tarfile in ../*.tgz; do \ 24 split -b235k $$tarfile `basename $$tarfile tgz`; done 25 sh ../distrib/sets/makesums -t ${RELEASEDIR}/binary/sets/Split 26