summaryrefslogtreecommitdiff
path: root/distrib/sun3
diff options
context:
space:
mode:
authorkstailey <kstailey@cvs.openbsd.org>1998-08-23 18:10:41 +0000
committerkstailey <kstailey@cvs.openbsd.org>1998-08-23 18:10:41 +0000
commitaabbb1b44560db71e6e60f4d8dc57e74789e9d9f (patch)
treeebc3a4ce075ee7748de3d007837930a1c9746556 /distrib/sun3
parent961603c834c5d4a1cc05ad2454b93553e89d551f (diff)
update to be more like alpha, hp300, etc
Diffstat (limited to 'distrib/sun3')
-rw-r--r--distrib/sun3/ramdisk/Makefile.inc32
1 files changed, 32 insertions, 0 deletions
diff --git a/distrib/sun3/ramdisk/Makefile.inc b/distrib/sun3/ramdisk/Makefile.inc
new file mode 100644
index 00000000000..6cfaf512fe0
--- /dev/null
+++ b/distrib/sun3/ramdisk/Makefile.inc
@@ -0,0 +1,32 @@
+#
+# $OpenBSD: Makefile.inc,v 1.1 1998/08/23 18:10:40 kstailey Exp $
+# $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} \
+ REV=${REV} 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>