NetBSD/distrib/sun3/ramdisk/Makefile

103 lines
2.3 KiB
Makefile
Raw Normal View History

# $NetBSD: Makefile,v 1.25 2002/03/28 04:33:24 lukem Exp $
TOP= ${.CURDIR}/..
# This include just sets DISTRIBREV=XX
.include "${TOP}/Makefile.inc"
IMAGE= ramdisk
CBIN= rd_bin
TREE= ${TOP}/common/${IMAGE}.tree
LISTS= ${TOP}/common/${CBIN}.list \
${TOP}/common/${IMAGE}.list
1999-05-16 12:21:52 +04:00
KERNEL3 = ${KERNOBJDIR}/RAMDISK/netbsd
KERNEL3X = ${KERNOBJDIR}/RAMDISK3X/netbsd
1995-11-22 00:18:48 +03:00
1999-05-16 12:21:52 +04:00
MOUNT_POINT?= /mnt
VND?= vnd1
VND_DEV?= /dev/${VND}a
VND_RDEV?= /dev/r${VND}a
# These are all the parameters for the root fs:
1995-11-22 00:18:48 +03:00
DISKTYPE= rdroot
SIZE= 400k
# bigendian, minfree, opt, b/i , cpg
NEWFSARGS= -B be -m 0 -o space -i 4096 -c 20
MDSETIMAGE?= mdsetimage
MTREE?= mtree
KERNELS= netbsd.RAMDISK netbsd.RAMDISK3X
CLEANFILES= $(KERNELS) ${IMAGE}.fs netbsd-tmp
all: $(KERNELS)
netbsd.RAMDISK : ${IMAGE}.fs
cp ${KERNEL3} netbsd-tmp
${MDSETIMAGE} -v netbsd-tmp ${IMAGE}.fs
-mv -f netbsd-tmp $@
netbsd.RAMDISK3X : ${IMAGE}.fs
cp ${KERNEL3X} netbsd-tmp
${MDSETIMAGE} -v netbsd-tmp ${IMAGE}.fs
-mv -f netbsd-tmp $@
1995-11-22 00:18:48 +03:00
${IMAGE}.fs: ${TREE} ${LISTS} ${CBIN}
dd if=/dev/zero of=${IMAGE}.fs bs=${SIZE} count=1
vnconfig -t ${DISKTYPE} -v -c ${VND} ${IMAGE}.fs
disklabel -rw ${VND} ${DISKTYPE}
newfs ${NEWFSARGS} ${VND_RDEV}
mount ${VND_DEV} ${MOUNT_POINT}
${MTREE} -def ${TREE} -p ${MOUNT_POINT}/ -u
TOPDIR=${TOP} CURDIR=${.CURDIR} DESTDIR=${DESTDIR} \
1995-11-22 00:18:48 +03:00
OBJDIR=${.OBJDIR} TARGDIR=${MOUNT_POINT} \
sh ${TOP}/common/RunList.sh ${LISTS}
sync
@echo ""
@df -i ${MOUNT_POINT}
@echo ""
umount ${MOUNT_POINT}
vnconfig -u ${VND}
2001-02-13 06:11:26 +03:00
unconfig:
-umount -f ${MOUNT_POINT}
-vnconfig -u ${VND}
2001-02-13 06:11:26 +03:00
-/bin/rm -f ${IMAGE}.fs
1995-10-13 19:51:28 +03:00
# Do not delete this if I change my mind and kill make...
.PRECIOUS: ${IMAGE}.fs
# Rules for making ${CBIN} ...
.include "${TOP}/common/Make.crunch"
# Use stubs to eliminate some large stuff from libc
HACKSRC= ${DISTRIBDIR}/utils/libhack
.include "${HACKSRC}/Makefile.inc"
${CBIN}: libhack.o
1998-09-05 18:46:13 +04:00
clean cleandir distclean:
-rm -f a.out core *.core *.o *.cro *.c
1995-10-13 19:51:28 +03:00
-rm -f ${CLEANFILES}
.if !defined(RELEASEDIR)
release:
@echo setenv RELEASEDIR before doing that!
@false
.else # RELEASEDIR
release: $(KERNELS)
.for x in ${KERNELS}
gzip -c -9 < ${x} > \
${RELEASEDIR}/binary/kernel/${x}.gz
.endfor # KERNELS
.endif # RELEASEDIR
.INTERRUPT: unconfig
# Standard rules needed by the above...
.include <bsd.own.mk>
.include <bsd.prog.mk>
.include <bsd.obj.mk>
.include <bsd.subdir.mk>