diff options
author | Dale Rahn <drahn@cvs.openbsd.org> | 2006-06-06 00:01:51 +0000 |
---|---|---|
committer | Dale Rahn <drahn@cvs.openbsd.org> | 2006-06-06 00:01:51 +0000 |
commit | 450766661fab1f3d45ec29ad4e91183d4e8be834 (patch) | |
tree | da9cb4f509dc2e1619cc98525235ffc65c6f2c29 /etc/etc.armish/Makefile.inc | |
parent | f042d412f597bd02480f568d91aa3cb4373027cd (diff) |
System build pieces for armish arch.
Diffstat (limited to 'etc/etc.armish/Makefile.inc')
-rw-r--r-- | etc/etc.armish/Makefile.inc | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/etc/etc.armish/Makefile.inc b/etc/etc.armish/Makefile.inc new file mode 100644 index 00000000000..a7924d2c921 --- /dev/null +++ b/etc/etc.armish/Makefile.inc @@ -0,0 +1,20 @@ +# $OpenBSD: Makefile.inc,v 1.1 2006/06/06 00:01:49 drahn Exp $ +# etc.armish/Makefile.inc -- armish-specific etc Makefile targets + +.ifdef DESTDIR +snap_md: bsd notes distrib + cp ${.CURDIR}/../sys/arch/armish/compile/GENERIC/bsd \ + ${DESTDIR}/snapshot/bsd + +bsd: + cd ${.CURDIR}/../sys/arch/armish/conf && config GENERIC + cd ${.CURDIR}/../sys/arch/armish/compile/GENERIC && \ + ${MAKE} clean && ${MAKE} depend && exec ${MAKE} + +notes: + cp ${.CURDIR}/etc.i386/INSTALL.* ${DESTDIR}/snapshot + + +.PHONY: bsd notes + +.endif # DESTDIR check |