17 lines
445 B
Makefile
17 lines
445 B
Makefile
# $NetBSD: Makefile.inc,v 1.2 1996/05/07 20:33:53 mark Exp $
|
|
#
|
|
# etc.arm32/Makefile.inc -- arm32-specific etc Makefile targets
|
|
#
|
|
|
|
.ifdef DESTDIR
|
|
snap_md: netbsd-gen
|
|
|
|
netbsd-gen:
|
|
cd ${.CURDIR}/../sys/arch/arm32/conf && config GENERIC
|
|
cd ${.CURDIR}/../sys/arch/arm32/compile/GENERIC && \
|
|
make clean && make depend && make
|
|
cp ${.CURDIR}/../sys/arch/arm32/compile/GENERIC/netbsd \
|
|
${DESTDIR}/snapshot/netbsd-gen
|
|
|
|
.endif # DESTDIR check
|