23 lines
764 B
Makefile
23 lines
764 B
Makefile
# $NetBSD: Makefile.inc,v 1.23 2000/08/23 21:00:46 jhawk Exp $
|
|
#
|
|
# etc.i386/Makefile.inc -- i386-specific etc Makefile targets
|
|
#
|
|
|
|
# These are packaged and distributed
|
|
EXTRA_KERNELS+= GENERIC_TINY
|
|
|
|
# These are for use by the bootfloppy construction tools
|
|
BUILD_KERNELS+= INSTALL INSTALL_SMALL INSTALL_TINY
|
|
INSTALLATION_DIRS += installation/misc
|
|
|
|
# Build the boot floppies and install them
|
|
snap_md_post:
|
|
.ifndef UPDATE
|
|
cd ${.CURDIR}/../distrib && ${MAKE} cleandir
|
|
.endif
|
|
cd ${.CURDIR}/../distrib && ${MAKE} depend && ${MAKE}
|
|
cd ${.CURDIR}/../distrib/i386 && ${MAKE} release
|
|
cd ${.CURDIR}/../distrib/notes && ${MAKE} release
|
|
cd ${.CURDIR}/../sys/arch/i386/stand/dosboot && ${MAKE} release
|
|
sh ../distrib/sets/makesums -t ${RELEASEDIR}/installation/floppy '*.gz'
|