1995-10-10 04:19:16 +03:00
|
|
|
# $NetBSD: Makefile,v 1.7 1995/10/10 01:19:16 cgd Exp $
|
1995-03-21 04:36:12 +03:00
|
|
|
|
|
|
|
# Make a distribution for the alpha, on a spare disk.
|
|
|
|
# This creates a large, gzipped disk image in ${.OBJDIR}
|
|
|
|
|
|
|
|
.if !defined(DESTDIR) || !defined(DESTDISK)
|
|
|
|
all:
|
|
|
|
@echo both 'DESTDIR' and 'DESTDISK' must be defined.
|
|
|
|
@false
|
|
|
|
.else
|
|
|
|
|
|
|
|
SECPERCYL= 558
|
|
|
|
CYLS= 1476
|
|
|
|
|
1995-10-10 04:19:16 +03:00
|
|
|
all: bin.tar.gz etc.tar.gz rz25-image.gz
|
1995-03-21 04:36:12 +03:00
|
|
|
|
1995-10-10 04:19:16 +03:00
|
|
|
mount-fs:
|
1995-03-21 04:36:12 +03:00
|
|
|
disklabel -W ${DESTDISK}
|
|
|
|
-dd if=/dev/zero of=/dev/r${DESTDISK}c bs=`expr ${SECPERCYL} \* 512` \
|
|
|
|
count=${CYLS}
|
|
|
|
disklabel -w -r -B -b /usr/mdec/sdboot -s /usr/mdec/bootsd \
|
|
|
|
${DESTDISK} rz25
|
|
|
|
disklabel -W ${DESTDISK}
|
|
|
|
newfs -O /dev/r${DESTDISK}a
|
|
|
|
newfs -O /dev/r${DESTDISK}d
|
|
|
|
mount /dev/${DESTDISK}a ${DESTDIR}
|
|
|
|
mkdir ${DESTDIR}/usr
|
|
|
|
mount /dev/${DESTDISK}d ${DESTDIR}/usr
|
1995-10-10 04:19:16 +03:00
|
|
|
|
|
|
|
build-fs:
|
1995-03-21 04:36:12 +03:00
|
|
|
cd ${.CURDIR}/../../../etc && make distribution
|
1995-09-27 17:43:38 +03:00
|
|
|
cd ${.CURDIR}/../../../cygnus && \
|
|
|
|
make prefix=${DESTDIR}/usr/local install
|
1995-03-21 04:36:12 +03:00
|
|
|
cp ${.CURDIR}/../../../sys/arch/alpha/compile/GENERIC/netbsd ${DESTDIR}
|
|
|
|
ln -s gcc ${DESTDIR}/usr/local/bin/cc
|
|
|
|
ln -s \
|
1995-09-27 18:17:48 +03:00
|
|
|
../local/lib/gcc-lib/alpha-unknown-netbsd1.0A/2.7-95q4/cpp \
|
1995-03-21 04:36:12 +03:00
|
|
|
${DESTDIR}/usr/libexec
|
|
|
|
ln -s ../local/bin/ar ${DESTDIR}/usr/bin
|
|
|
|
ln -s ../local/bin/as ${DESTDIR}/usr/bin
|
|
|
|
ln -s ../local/bin/cc ${DESTDIR}/usr/bin
|
|
|
|
ln -s ../local/bin/gcc ${DESTDIR}/usr/bin
|
|
|
|
ln -s ../local/bin/ld ${DESTDIR}/usr/bin
|
|
|
|
ln -s ../local/bin/nm ${DESTDIR}/usr/bin
|
|
|
|
ln -s ../local/bin/ranlib ${DESTDIR}/usr/bin
|
|
|
|
ln -s ../local/bin/size ${DESTDIR}/usr/bin
|
|
|
|
ln -s ../local/bin/strip ${DESTDIR}/usr/bin
|
1995-09-29 10:22:43 +03:00
|
|
|
cp -p ${DESTDIR}/usr/mdec/boot ${DESTDIR}/
|
1995-10-10 04:19:16 +03:00
|
|
|
|
|
|
|
unmount-fs:
|
1995-03-21 04:36:12 +03:00
|
|
|
umount ${DESTDIR}/usr ${DESTDIR}
|
|
|
|
fsck /dev/r${DESTDISK}a /dev/r${DESTDISK}d
|
1995-10-10 04:19:16 +03:00
|
|
|
|
|
|
|
rz25-image.gz: mount-fs build-fs unmount-fs
|
1995-03-21 04:36:12 +03:00
|
|
|
/bin/rm -f $@
|
|
|
|
dd if=/dev/r${DESTDISK}c bs=`expr ${SECPERCYL} \* 512` \
|
|
|
|
count=${CYLS} | gzip -9 > $@
|
1995-10-09 04:53:50 +03:00
|
|
|
|
1995-10-10 04:19:16 +03:00
|
|
|
bin.tar.gz: mount-fs build-fs
|
|
|
|
/bin/rm -f $@
|
|
|
|
(cd ${DESTDIR} ; find . | grep -v '^./etc' | pax -w -d | gzip -9) > $@
|
1995-10-09 04:53:50 +03:00
|
|
|
|
1995-10-10 04:19:16 +03:00
|
|
|
etc.tar.gz: mount-fs build-fs
|
|
|
|
/bin/rm -f $@
|
|
|
|
(cd ${DESTDIR} ; find ./etc | pax -w -d | gzip -9) > $@
|
1995-10-09 04:53:50 +03:00
|
|
|
|
1995-03-21 04:36:12 +03:00
|
|
|
.endif
|
|
|
|
|
|
|
|
_SUBDIRUSE:
|
|
|
|
|
1995-10-10 04:19:16 +03:00
|
|
|
# clean dependencies in case somebody decides to shortcut the build.
|
|
|
|
clean:
|
|
|
|
/bin/rm -f bin.tar.gz etc.tar.gz rz25-image.gz
|
|
|
|
/bin/rm -f mount-fs build-fs unmount-fs
|
|
|
|
|
1995-03-21 04:36:12 +03:00
|
|
|
.include <bsd.own.mk>
|
|
|
|
.include <bsd.obj.mk>
|