1 # $NetBSD: Makefile.inc,v 1.33 2002/04/13 00:00:20 tv 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 cd ${.CURDIR}/../sys/arch/i386/stand/misc && ${MAKE} release 27 ${MAKESUMS} -t ${RELEASEDIR}/installation/floppy '*.fs' 28 ${MAKESUMS} -t ${RELEASEDIR}/installation/misc '*.*' 29 30 # For "make iso-image" 31 iso-image_md_pre: 32 echo iso-image_md_pre ${MACHINE_ARCH} 33 iso-image_md_post: 34 echo iso-image_md_post ${MACHINE_ARCH} 35