Makefile.inc revision 1.1
11.1Schopps# 21.1Schopps# etc.amiga/Makefile.inc -- amiga-specific etc Makefile targets 31.1Schopps# 41.1Schopps# $Id: Makefile.inc,v 1.1 1994/04/07 00:34:33 chopps Exp $ 51.1Schopps 61.1Schopps.ifdef DESTDIR 71.1Schoppssnap_md: netbsd-generic netbsd-a3000 81.1Schopps cp ${.CURDIR}/../sys/arch/amiga6/compile/GENERIC/netbsd \ 91.1Schopps ${DESTDIR}/snapshot/netbsd-generic 101.1Schopps cp ${.CURDIR}/../sys/arch/amiga/compile/A3000/netbsd \ 111.1Schopps ${DESTDIR}/snapshot/netbsd-a3000 121.1Schoppsnetbsd-generic: 131.1Schopps cd ${.CURDIR}/../sys/arch/amiga/conf && config GENERIC 141.1Schopps cd ${.CURDIR}/../sys/arch/amiga/compile/GENERIC && \ 151.1Schopps make clean && make depend && make 161.1Schopps 171.1Schoppsnetbsd-a3000: 181.1Schopps cd ${.CURDIR}/../sys/arch/amiga/conf && config A3000 191.1Schopps cd ${.CURDIR}/../sys/arch/amiga/compile/A3000 && \ 201.1Schopps make clean && make depend && make 211.1Schopps.endif # DESTDIR check 22