26 lines
816 B
Makefile
26 lines
816 B
Makefile
# $NetBSD: Makefile.inc,v 1.16 2002/05/02 15:09:43 lukem Exp $
|
|
#
|
|
# etc.hp300/Makefile.inc -- hp300-specific etc Makefile targets
|
|
#
|
|
|
|
KERNEL_SETS= GENERIC
|
|
|
|
BUILD_KERNELS= INSTALL RAMDISK
|
|
|
|
INSTALLATION_DIRS+= installation/miniroot \
|
|
installation/misc
|
|
|
|
# Build the boot media and install notes and install them
|
|
snap_md_post:
|
|
.ifndef UPDATE
|
|
cd ${.CURDIR}/../distrib && ${MAKE} cleandir
|
|
cd ${.CURDIR}/../sys/arch/hp300/stand && ${MAKE} cleandir
|
|
.endif
|
|
cd ${.CURDIR}/../distrib && ${MAKE} depend && ${MAKE}
|
|
cd ${.CURDIR}/../distrib/notes && ${MAKE} release
|
|
cd ${.CURDIR}/../distrib/${MACHINE} && ${MAKE} release
|
|
cd ${.CURDIR}/../distrib/miniroot && ${MAKE} release
|
|
cd ${.CURDIR}/../sys/arch/hp300/stand && \
|
|
${MAKE} depend && ${MAKE} && ${MAKE} release
|
|
${MAKESUMS} -t ${RELEASEDIR}/installation/misc 'SYS*'
|