diff options
author | gene <gene@cvs.openbsd.org> | 1997-05-11 02:03:56 +0000 |
---|---|---|
committer | gene <gene@cvs.openbsd.org> | 1997-05-11 02:03:56 +0000 |
commit | 3df630426365d15dff5496bc87a18d74f5cc2dd2 (patch) | |
tree | 767c5870b374ac2bc1834cee2b671e003a2f3bf1 | |
parent | 230a333d47d725a0161324f3d59eafd33ce96fa9 (diff) |
Use this file when building mac68k snapshots.
We now build a GENERIC and GENERICSBC kernel w/ all snapshots.
Test please.
-rw-r--r-- | etc/etc.mac68k/Makefile.inc | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/etc/etc.mac68k/Makefile.inc b/etc/etc.mac68k/Makefile.inc new file mode 100644 index 00000000000..10d62599135 --- /dev/null +++ b/etc/etc.mac68k/Makefile.inc @@ -0,0 +1,20 @@ +# +# $OpenBSD: Makefile.inc,v 1.1 1997/05/11 02:03:55 gene Exp $ +# etc.mac68k/Makefile.inc -- mac68k-specific etc Makefile targets + +.ifdef DESTDIR +snap_md: bsd-generic bsd-genericsbc + cp ${.CURDIR}/../sys/arch/mac68k/compile/GENERIC/bsd.gz \ + ${DESTDIR}/snapshot/bsd-generic.gz + cp ${.CURDIR}/../sys/arch/mac68k/compile/GENERICSBC/bsd.gz \ + ${DESTDIR}/snapshot/bsd-genericsbc.gz +bsd-generic: + cd ${.CURDIR}/../sys/arch/mac68k/conf && config GENERIC + cd ${.CURDIR}/../sys/arch/mac68k/compile/GENERIC && \ + make clean && make depend && make && gzip -9 bsd +bsd-genericsbc: + cd ${.CURDIR}/../sys/arch/mac68k/conf && config GENERICSBC + cd ${.CURDIR}/../sys/arch/mac68k/compile/GENERICSBC && \ + make clean && make depend && make && gzip -9 bsd + +.endif # DESTDIR check |