diff options
author | 1997-01-24 00:15:06 +0000 | |
---|---|---|
committer | 1997-01-24 00:15:06 +0000 | |
commit | 06192cb066a28469880435fabb63aaf06914300a (patch) | |
tree | 5e40c5f5f6a6a19cc52371185d799fee872ec7b9 | |
parent | update (diff) | |
download | wireguard-openbsd-06192cb066a28469880435fabb63aaf06914300a.tar.xz wireguard-openbsd-06192cb066a28469880435fabb63aaf06914300a.zip |
blah
-rw-r--r-- | etc/etc.arc/Makefile.inc | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/etc/etc.arc/Makefile.inc b/etc/etc.arc/Makefile.inc new file mode 100644 index 00000000000..993242fa0ae --- /dev/null +++ b/etc/etc.arc/Makefile.inc @@ -0,0 +1,20 @@ +# $OpenBSD: Makefile.inc,v 1.1 1997/01/24 00:15:06 deraadt Exp $ +# +# etc.arc/Makefile.inc -- arc-specific etc Makefile targets + +.ifdef DESTDIR + +snap_md: binutils bsd + +binutils: + cd ${DESTDIR} && tar cf - usr/*openbsd* \ + | ${GZIP} ${GZIPFLAGS} > snapshot/usr.binutils.tar${GZIPEXT} + +bsd: + cd ${.CURDIR}/../sys/arch/arc/conf && config GENERIC + cd ${.CURDIR}/../sys/arch/arc/compile/GENERIC && \ + make clean && make depend && make + cp ${.CURDIR}/../sys/arch/arc/compile/GENERIC/bsd \ + ${DESTDIR}/snapshot/bsd + +.endif |