1 # $NetBSD: Makefile.inc,v 1.30 2001/11/29 22:45:56 thorpej Exp $ 2 # 3 # etc.i386/Makefile.inc -- i386-specific etc Makefile targets 4 # 5 6 KERNEL_SETS= GENERIC GENERIC_TINY GENERIC_LAPTOP GENERIC_DIAGNOSTIC \ 7 GENERIC_PS2TINY 8 9 BUILD_KERNELS= INSTALL INSTALL_SMALL INSTALL_TINY INSTALL_LAPTOP INSTALL_PS2 10 11 INSTALLATION_DIRS += installation/misc 12 13 # mkisofs arguments to generate bootable iso image 14 MKISOFS_FLAGS+= -b installation/floppy/boot-big.fs 15 16 # Tar up extra kernel sets. 17 # Build the boot floppies and install them 18 snap_md_post: 19 .ifndef UPDATE 20 cd ${.CURDIR}/../distrib && ${MAKE} cleandir 21 .endif 22 cd ${.CURDIR}/../distrib && ${MAKE} depend && ${MAKE} 23 cd ${.CURDIR}/../distrib/i386 && ${MAKE} release 24 cd ${.CURDIR}/../distrib/notes && ${MAKE} release 25 cd ${.CURDIR}/../sys/arch/i386/stand/dosboot && ${MAKE} release 26 sh ../distrib/sets/makesums -t ${RELEASEDIR}/installation/floppy '*.gz' 27 28 # For "make iso-image" 29 iso-image_md_pre: 30 echo iso-image_md_pre ${MACHINE_ARCH} 31 iso-image_md_post: 32 echo iso-image_md_post ${MACHINE_ARCH} 33