diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2004-04-21 18:40:22 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2004-04-21 18:40:22 +0000 |
commit | 66fd33a03cbf2bc6bc285200000a16628fd42ab3 (patch) | |
tree | 0024fb6fbb870d8116ccbb8df9ab713d255493b0 /distrib/luna88k/ramdisk/Makefile.inc | |
parent | 8cd047d520391d73386995cafcc59b4bb3179dee (diff) |
Preliminary bsd.rd material for luna88k, to be built upon. Heavily based
upon mvme88k.
Diffstat (limited to 'distrib/luna88k/ramdisk/Makefile.inc')
-rw-r--r-- | distrib/luna88k/ramdisk/Makefile.inc | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/distrib/luna88k/ramdisk/Makefile.inc b/distrib/luna88k/ramdisk/Makefile.inc new file mode 100644 index 00000000000..75cb26964ce --- /dev/null +++ b/distrib/luna88k/ramdisk/Makefile.inc @@ -0,0 +1,44 @@ +# +# $OpenBSD: Makefile.inc,v 1.1 2004/04/21 18:40:21 miod Exp $ +# + +# TOP is assumed to be defined by Makefile including this one. + +CBIN?= instbin +LISTS= ${.CURDIR}/list +UTILS?= ${.CURDIR}/../../miniroot + +COMMONDIR= ${TOP}/ramdisk +MOUNT_POINT?= ${TOP}/${BASE}/fs + +CRUNCHCONF?= ${COMMONDIR}/${CBIN}.conf +MTREE= ${UTILS}/mtree.conf +RAWLABEL= + +${CBIN}.conf: ${LISTS} + awk -f ${UTILS}/makeconf.awk CBIN=${CBIN} ${LISTS} > ${CBIN}.conf + +${CBIN}.mk ${CBIN}.cache ${CBIN}.c: ${CBIN}.conf + crunchgen -D ${BSDSRCDIR} -L ${DESTDIR}/usr/lib ${CBIN}.conf + +${CBIN}: ${CBIN}.mk ${CBIN}.cache ${CBIN}.c + make -f ${CBIN}.mk all + +#${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} UTILS=${UTILS} \ + sh ${UTILS}/runlist.sh ${LISTS} + rm ${MOUNT_POINT}/${CBIN} + +clean cleandir: + /bin/rm -f core ${IMAGE} ${CBIN} ${CBIN}.mk ${CBIN}.cache *.o *.lo *.c + +.include <bsd.obj.mk> +.include <bsd.subdir.mk> |