diff options
author | Dale S. Rahn <rahnds@cvs.openbsd.org> | 1997-02-15 04:27:20 +0000 |
---|---|---|
committer | Dale S. Rahn <rahnds@cvs.openbsd.org> | 1997-02-15 04:27:20 +0000 |
commit | dac1e2449c3d5503940993308f9765cfb7efd1e0 (patch) | |
tree | c0d18f54968cd9529a71ae2191559e0dd03ff70e /distrib/mvme68k/ramdisk/Makefile.inc | |
parent | 73570626f45431b6c5e537b1dea7d61cb83745ee (diff) |
Add new style of miniroot building. primarily based on the distrib/miniroot
code.
Diffstat (limited to 'distrib/mvme68k/ramdisk/Makefile.inc')
-rw-r--r-- | distrib/mvme68k/ramdisk/Makefile.inc | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/distrib/mvme68k/ramdisk/Makefile.inc b/distrib/mvme68k/ramdisk/Makefile.inc new file mode 100644 index 00000000000..d0080dbcb6e --- /dev/null +++ b/distrib/mvme68k/ramdisk/Makefile.inc @@ -0,0 +1,31 @@ +# +# $NetBSD: Makefile.inc,v 1.1 1995/07/18 04:13:14 briggs Exp $ +# + +# TOP is assumed to be defined by Makefile including this one. + +CBIN?= raminst +COMMONDIR= ${TOP}/ramdisk + +MOUNT_POINT?= ${TOP}/${BASE}/fs + +LISTS= ${.CURDIR}/list +CRUNCHCONF?= ${COMMONDIR}/${CBIN}.conf +MTREE= ${COMMONDIR}/mtree.conf + +${CBIN}.mk ${CBIN}.cache ${CBIN}.c: ${CRUNCHCONF} + crunchgen -D ${BSDSRCDIR} -L ${DESTDIR}/usr/lib ${CRUNCHCONF} + +${CBIN}: ${CBIN}.mk ${CBIN}.cache ${CBIN}.c + make -f ${CBIN}.mk all + +do_files: + mtree -def ${MTREE} -p ${MOUNT_POINT}/ -u + TOPDIR=${TOP} CURDIR=${.CURDIR} OBJDIR=${.OBJDIR} \ + TARGDIR=${MOUNT_POINT} sh ${TOP}/runlist.sh ${LISTS} + +clean cleandir: + /bin/rm -f core ${IMAGE} ${CBIN} ${CBIN}.mk ${CBIN}.cache *.o *.lo *.c + +.include <bsd.obj.mk> +.include <bsd.subdir.mk> |