Makefile.inc revision 1.1
11.1Sthorpej# $NetBSD: Makefile.inc,v 1.1 1995/09/06 16:17:41 thorpej Exp $ 21.1Sthorpej# 31.1Sthorpej# etc.hp300/Makefile.inc -- hp300-specific etc Makefile targets 41.1Sthorpej 51.1Sthorpej.ifdef DESTDIR 61.1Sthorpejsnap_md: netbsd-gen.gz netbsd-dl.gz 71.1Sthorpej 81.1Sthorpejnetbsd-gen: 91.1Sthorpej cd ${.CURDIR}/../sys/arch/hp300/conf && config.old GENERIC 101.1Sthorpej cd ${.CURDIR}/../sys/arch/hp300/compile/GENERIC && \ 111.1Sthorpej make clean && make depend && make 121.1Sthorpej cp ${.CURDIR}/../sys/arch/hp300/compile/GENERIC/netbsd \ 131.1Sthorpej ${DESTDIR}/snapshot/netbsd-gen 141.1Sthorpej 151.1Sthorpejnetbsd-dl: 161.1Sthorpej cd ${.CURDIR}/../sys/arch/hp300/conf && config.old DISKLESS 171.1Sthorpej cd ${.CURDIR}/../sys/arch/hp300/compile/DISKLESS && \ 181.1Sthorpej make clean && make depend && make 191.1Sthorpej cp ${.CURDIR}/../sys/arch/hp300/compile/DISKLESS/netbsd \ 201.1Sthorpej ${DESTDIR}/snapshot/netbsd-dl 211.1Sthorpej 221.1Sthorpejnetbsd-gen.gz: netbsd-gen 231.1Sthorpej gzip -9 ${DESTDIR}/snapshot/netbsd-gen 241.1Sthorpej 251.1Sthorpejnetbsd-dl.gz: netbsd-dl 261.1Sthorpej gzip -9 ${DESTDIR}/snapshot/netbsd-dl 271.1Sthorpej 281.1Sthorpej.endif # DESTDIR check 29