diff options
author | 1997-01-19 22:29:15 +0000 | |
---|---|---|
committer | 1997-01-19 22:29:15 +0000 | |
commit | 112a9c49917bae780b3de9e8da0bd465fcacd2b1 (patch) | |
tree | 8c1bbebcd4aba8c4d5d2080d2893665121122912 | |
parent | add a variable SNAP_GZIP_CMD to the snap_tar target - here my comment (diff) | |
download | wireguard-openbsd-112a9c49917bae780b3de9e8da0bd465fcacd2b1.tar.xz wireguard-openbsd-112a9c49917bae780b3de9e8da0bd465fcacd2b1.zip |
add Makefile.inc for tar'ing also the binutils tree (/usr/*-openbsd-*)
then making a snapshot - also add a target for creating and copying
the GENERIC kernel
-rw-r--r-- | etc/etc.alpha/Makefile.inc | 21 | ||||
-rw-r--r-- | etc/etc.pmax/Makefile.inc | 42 |
2 files changed, 63 insertions, 0 deletions
diff --git a/etc/etc.alpha/Makefile.inc b/etc/etc.alpha/Makefile.inc new file mode 100644 index 00000000000..0de93a422db --- /dev/null +++ b/etc/etc.alpha/Makefile.inc @@ -0,0 +1,21 @@ +# +# etc.alpha/Makefile.inc -- alpha-specific etc Makefile targets +# +# $Id: Makefile.inc,v 1.1 1997/01/19 22:29:23 graichen Exp $ + +.ifdef DESTDIR +# XXX - bsd will come then we have a GENERIC kernel +snap_md: binutils + +binutils: + cd ${DESTDIR} && tar cf - usr/*openbsd* \ + | ${SNAP_GZIP_CMD} > snapshot/usr.binutils.tar${SNAP_GZIP_EXT} + +bsd: + cd ${.CURDIR}/../sys/arch/alpha/conf && config GENERIC + cd ${.CURDIR}/../sys/arch/alpha/compile/GENERIC && \ + make clean && make depend && make + cp ${.CURDIR}/../sys/arch/alpha/compile/GENERIC/bsd \ + ${DESTDIR}/snapshot/bsd + +.endif # DESTDIR check diff --git a/etc/etc.pmax/Makefile.inc b/etc/etc.pmax/Makefile.inc new file mode 100644 index 00000000000..e33ec3f6156 --- /dev/null +++ b/etc/etc.pmax/Makefile.inc @@ -0,0 +1,42 @@ +# +# etc.pmax/Makefile.inc -- pmax-specific etc Makefile targets +# +# $Id: Makefile.inc,v 1.1 1997/01/19 22:29:15 graichen Exp $ + +.ifdef DESTDIR + +snap_md: binutils bsd + +binutils: + cd ${DESTDIR} && tar cf - usr/*openbsd* \ + | ${SNAP_GZIP_CMD} > snapshot/usr.binutils.tar${SNAP_GZIP_EXT} + +bsd: + cd ${.CURDIR}/../sys/arch/pmax/conf && config GENERIC + cd ${.CURDIR}/../sys/arch/pmax/compile/GENERIC && \ + make clean && make depend && make + cp ${.CURDIR}/../sys/arch/pmax/compile/GENERIC/bsd \ + ${DESTDIR}/snapshot/bsd + +.endif # DESTDIR check +# +# etc.alpha/Makefile.inc -- alpha-specific etc Makefile targets +# +# $Id: Makefile.inc,v 1.1 1997/01/19 22:29:15 graichen Exp $ + +.ifdef DESTDIR +# XXX - bsd will come then we have a GENERIC kernel +snap_md: binutils + +binutils: + cd ${DESTDIR} && tar cf - usr/*openbsd* \ + | ${SNAP_GZIP_CMD} > snapshot/usr.binutils.tar${SNAP_GZIP_EXT} + +bsd: + cd ${.CURDIR}/../sys/arch/alpha/conf && config GENERIC + cd ${.CURDIR}/../sys/arch/alpha/compile/GENERIC && \ + make clean && make depend && make + cp ${.CURDIR}/../sys/arch/alpha/compile/GENERIC/bsd \ + ${DESTDIR}/snapshot/bsd + +.endif # DESTDIR check |