diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1997-05-10 03:44:14 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1997-05-10 03:44:14 +0000 |
commit | 311e70de96d103b08dff5b0d661efd59a7aa80a6 (patch) | |
tree | ab26f0cbd927e9466fbf9ac0221dde6565c8e62f /etc/etc.alpha/Makefile.inc | |
parent | d782783175c8ab0ef9adc3499a6eed3ff2550744 (diff) |
Add floppy target and make it a dependency for snap_md
Diffstat (limited to 'etc/etc.alpha/Makefile.inc')
-rw-r--r-- | etc/etc.alpha/Makefile.inc | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/etc/etc.alpha/Makefile.inc b/etc/etc.alpha/Makefile.inc index 130c745e4d7..c804d672447 100644 --- a/etc/etc.alpha/Makefile.inc +++ b/etc/etc.alpha/Makefile.inc @@ -1,11 +1,11 @@ # # etc.alpha/Makefile.inc -- alpha-specific etc Makefile targets # -# $Id: Makefile.inc,v 1.3 1997/05/05 15:14:41 graichen Exp $ +# $Id: Makefile.inc,v 1.4 1997/05/10 03:44:13 millert Exp $ .ifdef DESTDIR -snap_md: binutils bsd +snap_md: binutils bsd floppy binutils: cd ${DESTDIR} && tar cf - usr/*openbsd* \ @@ -18,4 +18,8 @@ bsd: cp ${.CURDIR}/../sys/arch/alpha/compile/GENERIC/bsd \ ${DESTDIR}/snapshot/bsd +floppy: + cd ${.CURDIR}/../distrib/alpha/ramdisk && \ + make cleandir && make && make install + .endif # DESTDIR check |