1995-02-02 04:07:51 +00:00
|
|
|
# $Id: Makefile,v 1.99 1995/02/01 22:53:32 jkh Exp $
|
1994-09-23 08:28:25 +00:00
|
|
|
#
|
|
|
|
|
1994-11-09 20:27:32 +00:00
|
|
|
FLOPPY= fd0
|
1995-01-30 03:22:24 +00:00
|
|
|
#VNDEV= vn0
|
1994-11-09 20:27:32 +00:00
|
|
|
|
1994-11-22 05:21:06 +00:00
|
|
|
|
1995-01-30 03:22:24 +00:00
|
|
|
# Evil floppies are, of course, 1.44MB floppies.
|
|
|
|
.if !defined(EVIL_FLOPPY)
|
1994-11-08 18:36:46 +00:00
|
|
|
FDLABEL= fd1200
|
1994-11-09 20:27:32 +00:00
|
|
|
DDBS= 15k
|
|
|
|
DDCOUNT= 80
|
|
|
|
.else
|
|
|
|
FDLABEL= fd1440
|
1995-01-13 08:06:55 +00:00
|
|
|
DDBS= 18k
|
|
|
|
DDCOUNT= 80
|
|
|
|
.endif
|
|
|
|
|
|
|
|
MNT= /mnt
|
|
|
|
|
|
|
|
CPIO1= basename cat chmod cksum cp cu date dd df dmesg echo ed expr hostname
|
|
|
|
CPIO1+= kill ln ls mkdir mt mv rcp rm rmdir sh sleep stty sync tar test tip [
|
|
|
|
CPIO1+= -sh badsect chown clri disklabel dump dmesg fdisk fsck getopt ifconfig
|
|
|
|
CPIO1+= init mknod mount mount_cd9660 mount_msdos mount_nfs ncftp newfs ping pwd
|
|
|
|
CPIO1+= reboot restore slattach swapon umount route
|
|
|
|
CPIO1+= rdump rrestore halt ft
|
|
|
|
CPIO1+= ftp rsh sed telnet rlogin grep
|
|
|
|
|
|
|
|
CPIO2= etc/services etc/protocols
|
|
|
|
|
|
|
|
# bininst MUST be the last file on the cpio floppy. It's used to detect
|
|
|
|
# a successful extraction.
|
1995-01-14 08:02:49 +00:00
|
|
|
CPIO3= scripts/miscfuncs.sh scripts/instdist.sh scripts/netinst.sh \
|
1995-02-02 04:07:51 +00:00
|
|
|
scripts/adduser.sh scripts/bininst.sh scripts/setup.sh
|
1995-01-13 08:06:55 +00:00
|
|
|
|
|
|
|
CPIO4= /usr/sbin/tzsetup
|
|
|
|
CPIO4B= tzsetup
|
|
|
|
|
|
|
|
# Somewhat on the rough side...
|
|
|
|
CLEANFILES+= *.o *.c *.cache *.mk *.lo ${CPIO1} *.flp *.gz
|
1995-01-30 03:22:24 +00:00
|
|
|
CLEANFILES+= boot_flp cpio_flp_1 kernel.*
|
1995-01-13 08:06:55 +00:00
|
|
|
|
|
|
|
MTREE_DIR= ${.CURDIR}/../etc/mtree
|
|
|
|
|
|
|
|
ZIPNSPLIT= gzip --no-name -9 -c | split -b 240640 -
|
|
|
|
|
|
|
|
hierarchy:
|
|
|
|
mtree -deU -f ${MTREE_DIR}/BSD.root.dist -p ${DESTDIR}/
|
|
|
|
mtree -deU -f ${MTREE_DIR}/BSD.var.dist -p ${DESTDIR}/var
|
|
|
|
mtree -deU -f ${MTREE_DIR}/BSD.usr.dist -p ${DESTDIR}/usr
|
|
|
|
.if defined(MAKE_LOCAL)
|
|
|
|
mtree -deU -f ${MTREE_DIR}/BSD.local.dist -p ${DESTDIR}/usr/local
|
|
|
|
.endif
|
|
|
|
rm -f ${DESTDIR}/sys
|
|
|
|
ln -s usr/src/sys ${DESTDIR}/sys
|
|
|
|
|
|
|
|
kernel: ${.CURDIR}/../sys/i386/conf/GENERIC
|
1995-01-30 03:22:24 +00:00
|
|
|
if [ ! -f ${.CURDIR}/../sys/compile/GENERIC/kernel ]; then \
|
1995-01-13 08:06:55 +00:00
|
|
|
(cd ${.CURDIR}/../sys/i386/conf; config GENERIC); \
|
|
|
|
(cd ${.CURDIR}/../sys/compile/GENERIC; \
|
|
|
|
${MAKE} depend; ${MAKE} all; ) \
|
|
|
|
fi
|
1995-01-30 03:22:24 +00:00
|
|
|
cp ${.CURDIR}/../sys/compile/GENERIC/kernel kernel
|
1995-01-13 08:06:55 +00:00
|
|
|
|
1995-01-30 03:22:24 +00:00
|
|
|
kernel.BOOTFLP: ${.CURDIR}/../sys/i386/conf/BOOTFLP
|
|
|
|
if [ ! -f ${.CURDIR}/../sys/compile/BOOTFLP/kernel ]; then \
|
|
|
|
(cd ${.CURDIR}/../sys/i386/conf; config BOOTFLP); \
|
|
|
|
(cd ${.CURDIR}/../sys/compile/BOOTFLP; \
|
|
|
|
${MAKE} depend; ${MAKE} all; ) \
|
|
|
|
fi
|
|
|
|
cp ${.CURDIR}/../sys/compile/BOOTFLP/kernel kernel.BOOTFLP
|
|
|
|
strip kernel.BOOTFLP
|
1995-01-13 08:06:55 +00:00
|
|
|
|
1995-01-30 03:22:24 +00:00
|
|
|
boot.flp: kernel.BOOTFLP
|
1995-01-13 08:06:55 +00:00
|
|
|
crunchgen ${.CURDIR}/boot_flp.conf
|
|
|
|
${MAKE} -f boot_flp.mk objs exe NOCRYPT=yes
|
1995-01-30 03:22:24 +00:00
|
|
|
-umount /dev/${FLOPPY}
|
|
|
|
-umount ${MNT}
|
|
|
|
disklabel -w -r -B \
|
1995-01-13 08:06:55 +00:00
|
|
|
-b ${DESTDIR}/usr/mdec/fdboot -s ${DESTDIR}/usr/mdec/bootfd \
|
1995-01-30 03:22:24 +00:00
|
|
|
/dev/r${FLOPPY} ${FDLABEL}
|
1995-01-29 02:12:30 +00:00
|
|
|
newfs -c 80 -b 4096 -f 512 -i 9000 -m 0 -o space -T ${FDLABEL} \
|
1995-01-30 03:22:24 +00:00
|
|
|
/dev/r${FLOPPY}
|
|
|
|
mount -o async /dev/${FLOPPY} ${MNT}
|
1995-01-13 08:06:55 +00:00
|
|
|
mkdir ${MNT}/dev ${MNT}/stand ${MNT}/mnt
|
1995-01-30 03:22:24 +00:00
|
|
|
cp kernel.BOOTFLP ${MNT}/kernel
|
1995-01-13 08:06:55 +00:00
|
|
|
( cd ${DESTDIR}/dev ; \
|
|
|
|
ls console tty ttyv1 null zero \
|
|
|
|
sd[0123][a-h] wd[0123][a-h] fd[01] \
|
|
|
|
rsd[0123][a-h] rwd[0123][a-h] rfd[01] \
|
1995-01-30 03:22:24 +00:00
|
|
|
| cpio -dump ${MNT}/dev \
|
1995-01-13 08:06:55 +00:00
|
|
|
)
|
1995-01-27 08:30:35 +00:00
|
|
|
gzip -9 -c < boot_flp > ${MNT}/stand/sysinstall
|
1995-01-13 08:06:55 +00:00
|
|
|
chmod 755 ${MNT}/stand/sysinstall
|
|
|
|
ln ${MNT}/stand/sysinstall ${MNT}/stand/newfs
|
|
|
|
ln ${MNT}/stand/sysinstall ${MNT}/stand/gzip
|
|
|
|
ln ${MNT}/stand/sysinstall ${MNT}/stand/fsck
|
|
|
|
install -m 400 -c ${.CURDIR}/../COPYRIGHT ${MNT}/COPYRIGHT
|
|
|
|
install -m 400 -c ${.CURDIR}/../share/FAQ/diskspace.FAQ \
|
|
|
|
${MNT}/DISKSPACE.FAQ
|
|
|
|
install -m 400 -c ${.CURDIR}/../share/FAQ/RELNOTES.FreeBSD \
|
|
|
|
${MNT}/RELNOTES.FreeBSD
|
|
|
|
install -m 400 -c ${.CURDIR}/../share/FAQ/TROUBLESHOOTING \
|
|
|
|
${MNT}/TROUBLESHOOTING
|
|
|
|
install -m 400 -c ${.CURDIR}/../share/FAQ/README-2.0 ${MNT}/README
|
|
|
|
touch ${MNT}/this_is_boot_flp
|
1995-01-30 03:22:24 +00:00
|
|
|
sync
|
1995-01-13 08:06:55 +00:00
|
|
|
-umount ${MNT}
|
1995-01-30 03:22:24 +00:00
|
|
|
sync
|
|
|
|
fsck /dev/r${FLOPPY}
|
|
|
|
dd if=/dev/r${FLOPPY} of=boot.tmp bs=${DDBS} count=${DDCOUNT}
|
1995-01-29 02:12:30 +00:00
|
|
|
mv boot.tmp boot.flp
|
1995-01-30 03:22:24 +00:00
|
|
|
od -x boot.flp | head -3
|
1995-02-01 22:53:32 +00:00
|
|
|
gzip -9 -c < boot.flp > boot.flp.gz
|
1994-10-26 05:41:47 +00:00
|
|
|
|
1995-01-30 03:22:24 +00:00
|
|
|
cpio.flp: kernel
|
1994-11-21 04:14:33 +00:00
|
|
|
crunchgen ${.CURDIR}/cpio_flp_1.conf
|
1994-12-21 04:57:07 +00:00
|
|
|
${MAKE} -f cpio_flp_1.mk objs exe NOCRYPT=yes
|
1994-10-26 05:41:47 +00:00
|
|
|
for i in ${CPIO1} ; do rm -f ./$$i ; ln cpio_flp_1 ./$$i ; done
|
1994-11-06 23:47:06 +00:00
|
|
|
( cd /${DESTDIR} ; ls ${CPIO2} | cpio -H newc -oa ) | cpio -ivd
|
|
|
|
( cd ${.CURDIR} ; ls ${CPIO3} | cpio -H newc -oa ) | cpio -ivd
|
1995-01-29 06:29:14 +00:00
|
|
|
chmod 755 ${CPIO3}
|
1994-11-21 04:14:33 +00:00
|
|
|
cp ${CPIO4} .
|
1995-01-30 03:22:24 +00:00
|
|
|
rm -f OK
|
|
|
|
touch OK
|
|
|
|
(ls ${CPIO1} ${CPIO2} ${CPIO3} ${CPIO4B} ; \
|
|
|
|
echo kernel ; echo OK ) | \
|
1995-01-27 08:30:35 +00:00
|
|
|
cpio -H newc -oa | gzip -9 -c | \
|
1994-11-18 01:05:05 +00:00
|
|
|
dd conv=osync > cpio.flp
|
1995-01-30 03:22:24 +00:00
|
|
|
rm -f OK
|
1995-01-27 08:30:35 +00:00
|
|
|
gzip -1 -c < cpio.flp > cpio.flp.gz
|
1994-10-26 05:41:47 +00:00
|
|
|
|
1995-01-30 03:22:24 +00:00
|
|
|
floppies: boot.flp cpio.flp
|
1995-01-27 07:37:41 +00:00
|
|
|
mkdir -p ${RELEASEDIR}/floppies
|
1995-01-30 03:22:24 +00:00
|
|
|
cp boot.flp boot.flp.gz cpio.flp cpio.flp.gz \
|
|
|
|
${RELEASEDIR}/floppies
|
1994-10-29 12:48:12 +00:00
|
|
|
|
|
|
|
release20:
|
1994-12-17 12:38:09 +00:00
|
|
|
.if !defined(RELEASEDIR)
|
|
|
|
@echo "Do NOT invoke this target without a RELEASEDIR defined."
|
|
|
|
@echo "It will otherwise blow away your root directory!"
|
|
|
|
@exit 1
|
|
|
|
.endif
|
1995-01-07 11:09:50 +00:00
|
|
|
@echo "Did you remember to increment the release number?"
|
1994-11-06 23:47:06 +00:00
|
|
|
( cd ${.CURDIR} ; ${MAKE} clean)
|
1994-10-29 12:48:12 +00:00
|
|
|
-mkdir ${RELEASEDIR}
|
|
|
|
chflags -R noschg ${RELEASEDIR}/.
|
|
|
|
rm -rf ${RELEASEDIR}/*
|
1995-01-15 06:31:50 +00:00
|
|
|
mkdir -p ${RELEASEDIR}/tarballs
|
1994-10-29 12:48:12 +00:00
|
|
|
( cd ${.CURDIR}/.. ; \
|
1994-12-21 04:57:07 +00:00
|
|
|
${MAKE} all distribute NOCRYPT=yes)
|
1994-10-29 12:48:12 +00:00
|
|
|
( cd ${.CURDIR}/../etc ; \
|
|
|
|
${MAKE} release-dirs )
|
1994-11-06 23:47:06 +00:00
|
|
|
( cd ${.CURDIR} ; ${MAKE} obj)
|
1994-10-29 12:48:12 +00:00
|
|
|
( cd ${.CURDIR} ; \
|
|
|
|
${MAKE} kernel DESTDIR=${RELEASEDIR}/filesys )
|
|
|
|
install ${COPY} -m 644 ${.CURDIR}/../sys/compile/GENERIC/kernel \
|
|
|
|
${RELEASEDIR}/filesys/kernel
|
|
|
|
( cd ${.CURDIR} ; \
|
|
|
|
${MAKE} hierarchy DESTDIR=${RELEASEDIR}/filesys )
|
|
|
|
( cd ${.CURDIR}/../etc ; \
|
|
|
|
${MAKE} distribution DESTDIR=${RELEASEDIR}/filesys \
|
|
|
|
NOCRYPT=yes SHARED=copies)
|
1994-11-17 07:11:30 +00:00
|
|
|
( cd ${RELEASEDIR}/filesys; \
|
1994-11-08 11:29:35 +00:00
|
|
|
tar cf - . | \
|
1994-11-21 04:14:33 +00:00
|
|
|
${ZIPNSPLIT} ${RELEASEDIR}/tarballs/bindist/bindist.)
|
1995-01-14 08:02:49 +00:00
|
|
|
cp ${.CURDIR}/scripts/extract_bin.sh \
|
|
|
|
${RELEASEDIR}/tarballs/bindist/extract.sh
|
|
|
|
( cd ${RELEASEDIR}/tarballs/bindist; ${.CURDIR}/scripts/mkchecksums.sh )
|
1994-10-29 12:48:12 +00:00
|
|
|
( cd ${.CURDIR} ; \
|
|
|
|
${MAKE} floppies )
|
1994-11-14 20:56:17 +00:00
|
|
|
|
1995-01-27 07:37:41 +00:00
|
|
|
EXTRADISTRIBUTIONS= secure games manpages proflibs dict info
|
1995-01-28 01:18:44 +00:00
|
|
|
DISTRIBUTIONS= bin ${EXTRADISTRIBUTIONS}
|
1994-11-14 20:56:17 +00:00
|
|
|
MTREEFILES= ${.CURDIR}/../etc/mtree
|
|
|
|
|
1995-01-14 20:15:38 +00:00
|
|
|
jkhdist:
|
1995-01-15 06:31:50 +00:00
|
|
|
@echo "--> Making all"
|
1995-02-01 11:19:24 +00:00
|
|
|
( cd ${.CURDIR}/..; ${MAKE} all )
|
1995-01-15 06:31:50 +00:00
|
|
|
@echo "--> Making distribute"
|
1995-01-14 20:15:38 +00:00
|
|
|
( cd ${.CURDIR}/..; ${MAKE} distribute )
|
1995-01-15 06:31:50 +00:00
|
|
|
@echo "--> Making beforetarballs"
|
1995-01-14 20:15:38 +00:00
|
|
|
( cd ${.CURDIR}; ${MAKE} beforetarballs )
|
1995-01-15 06:31:50 +00:00
|
|
|
@echo "--> Making tarballs"
|
1995-01-14 20:15:38 +00:00
|
|
|
( cd ${.CURDIR}; ${MAKE} tarballs )
|
1995-01-15 06:31:50 +00:00
|
|
|
@echo "--> Making floppies"
|
1995-01-14 20:15:38 +00:00
|
|
|
( cd ${.CURDIR}; ${MAKE} floppies )
|
|
|
|
|
1994-11-14 20:56:17 +00:00
|
|
|
distribute:
|
|
|
|
-mkdir ${RELEASEDIR}
|
|
|
|
chflags -R noschg ${RELEASEDIR}/.
|
|
|
|
rm -rf ${RELEASEDIR}/*
|
|
|
|
for i in ${DISTRIBUTIONS} ; \
|
|
|
|
do \
|
1995-01-27 01:47:32 +00:00
|
|
|
mkdir -p ${RELEASEDIR}/$$i ; \
|
1994-11-14 20:56:17 +00:00
|
|
|
mtree -deU -f ${MTREEFILES}/BSD.root.dist -p ${RELEASEDIR}/$$i/ ; \
|
|
|
|
mtree -deU -f ${MTREEFILES}/BSD.var.dist -p ${RELEASEDIR}/$$i/var ; \
|
|
|
|
mtree -deU -f ${MTREEFILES}/BSD.usr.dist -p ${RELEASEDIR}/$$i/usr ; \
|
|
|
|
done
|
1994-11-18 01:05:05 +00:00
|
|
|
( cd ${.CURDIR} ; \
|
|
|
|
${MAKE} kernel DESTDIR=${RELEASEDIR}/filesys )
|
|
|
|
install ${COPY} -m 644 ${.CURDIR}/../sys/compile/GENERIC/kernel \
|
1995-01-14 07:48:09 +00:00
|
|
|
${RELEASEDIR}/bin/kernel
|
1994-10-26 05:41:47 +00:00
|
|
|
|
1994-11-22 05:21:06 +00:00
|
|
|
beforetarballs:
|
1994-11-20 01:01:28 +00:00
|
|
|
rm -rf ${RELEASEDIR}/manpages/usr/share/man
|
1995-01-14 07:48:09 +00:00
|
|
|
mv ${RELEASEDIR}/bin/usr/share/man \
|
1994-11-20 01:01:28 +00:00
|
|
|
${RELEASEDIR}/manpages/usr/share/man
|
1994-11-20 01:54:13 +00:00
|
|
|
rm -rf ${RELEASEDIR}/games/usr/games
|
1995-01-14 07:48:09 +00:00
|
|
|
mv ${RELEASEDIR}/bin/usr/games \
|
1994-11-20 01:54:13 +00:00
|
|
|
${RELEASEDIR}/games/usr/games
|
1994-11-20 01:19:33 +00:00
|
|
|
rm -rf ${RELEASEDIR}/games/usr/share/games
|
1995-01-14 07:48:09 +00:00
|
|
|
mv ${RELEASEDIR}/bin/usr/share/games \
|
1994-11-20 01:19:33 +00:00
|
|
|
${RELEASEDIR}/games/usr/share/games
|
1994-11-20 01:01:28 +00:00
|
|
|
rm -rf ${RELEASEDIR}/dict/usr/share/dict
|
1995-01-14 07:48:09 +00:00
|
|
|
mv ${RELEASEDIR}/bin/usr/share/dict \
|
1994-11-20 01:01:28 +00:00
|
|
|
${RELEASEDIR}/dict/usr/share/dict
|
1995-01-14 07:48:09 +00:00
|
|
|
mv ${RELEASEDIR}/bin/usr/share/misc/airport \
|
|
|
|
${RELEASEDIR}/bin/usr/share/misc/birthtoken \
|
|
|
|
${RELEASEDIR}/bin/usr/share/misc/flowers \
|
|
|
|
${RELEASEDIR}/bin/usr/share/misc/na.phone \
|
|
|
|
${RELEASEDIR}/bin/usr/share/misc/zipcodes \
|
1994-12-18 12:15:13 +00:00
|
|
|
${RELEASEDIR}/dict/usr/share/misc
|
1995-01-14 07:48:09 +00:00
|
|
|
mv ${RELEASEDIR}/bin/usr/lib/*_p.a \
|
1994-11-20 01:01:28 +00:00
|
|
|
${RELEASEDIR}/proflibs/usr/lib
|
|
|
|
-cd ${RELEASEDIR} ; \
|
|
|
|
find ${EXTRADISTRIBUTIONS} -depth -type d -print | xargs rmdir
|
1995-01-14 07:48:09 +00:00
|
|
|
mkdir -p ${RELEASEDIR}/secure/usr
|
1995-01-14 12:51:40 +00:00
|
|
|
|
|
|
|
mkdir -p ${RELEASEDIR}/src/usr
|
|
|
|
cd ${RELEASEDIR}/src/usr ; cvs export -r ${RELEASETAG} src
|
1995-01-14 12:44:23 +00:00
|
|
|
|
1994-11-22 05:21:06 +00:00
|
|
|
tarballs:
|
1994-11-20 01:01:28 +00:00
|
|
|
rm -rf ${RELEASEDIR}/tarballs
|
1995-01-27 06:24:35 +00:00
|
|
|
mkdir -p ${RELEASEDIR}/tarballs
|
1995-01-12 12:30:07 +00:00
|
|
|
@for i in ${DISTRIBUTIONS} ; \
|
1994-11-20 01:01:28 +00:00
|
|
|
do \
|
1995-01-27 06:24:35 +00:00
|
|
|
mkdir -p ${RELEASEDIR}/tarballs/$${i} ; \
|
1994-11-20 01:01:28 +00:00
|
|
|
( cd ${RELEASEDIR}/$${i}; \
|
|
|
|
tar cf - . | \
|
1994-11-21 04:14:33 +00:00
|
|
|
${ZIPNSPLIT} ${RELEASEDIR}/tarballs/$$i/$${i}.) ; \
|
1995-01-14 08:02:49 +00:00
|
|
|
( cd ${RELEASEDIR}/tarballs/$${i}; \
|
|
|
|
sh -e ${.CURDIR}/scripts/mkchecksums.sh ) ; \
|
|
|
|
cp ${.CURDIR}/scripts/extract_$${i}.sh \
|
|
|
|
${RELEASEDIR}/tarballs/$${i}/extract.sh;\
|
1995-01-12 12:30:07 +00:00
|
|
|
echo "$${i} distribution is finished."; \
|
1994-11-20 01:01:28 +00:00
|
|
|
done
|
|
|
|
|
1995-01-17 19:57:35 +00:00
|
|
|
srcbase-tarball:
|
|
|
|
(cd ${RELEASEDIR}/src/usr/src; \
|
|
|
|
mkdir -p ${RELEASEDIR}/tarballs/src; \
|
|
|
|
tar -cf - [A-Z]* | \
|
|
|
|
${ZIPNSPLIT} ${RELEASEDIR}/tarballs/src/base.)
|
|
|
|
|
|
|
|
srcbin-tarball:
|
|
|
|
(cd ${RELEASEDIR}/src/usr/src; \
|
|
|
|
mkdir -p ${RELEASEDIR}/tarballs/src; \
|
|
|
|
tar -cf - bin | \
|
|
|
|
${ZIPNSPLIT} ${RELEASEDIR}/tarballs/src/srcbin.)
|
|
|
|
|
|
|
|
srcetc-tarball:
|
|
|
|
(cd ${RELEASEDIR}/src/usr/src; \
|
|
|
|
mkdir -p ${RELEASEDIR}/tarballs/src; \
|
|
|
|
tar -cf - etc | \
|
|
|
|
${ZIPNSPLIT} ${RELEASEDIR}/tarballs/src/etc.)
|
|
|
|
|
|
|
|
srcgames-tarball:
|
|
|
|
(cd ${RELEASEDIR}/src/usr/src; \
|
|
|
|
mkdir -p ${RELEASEDIR}/tarballs/src; \
|
|
|
|
tar -cf - games | \
|
|
|
|
${ZIPNSPLIT} ${RELEASEDIR}/tarballs/src/games.)
|
|
|
|
|
|
|
|
srcgnu-tarball:
|
|
|
|
(cd ${RELEASEDIR}/src/usr/src; \
|
|
|
|
mkdir -p ${RELEASEDIR}/tarballs/src; \
|
|
|
|
tar -cf - gnu | \
|
|
|
|
${ZIPNSPLIT} ${RELEASEDIR}/tarballs/src/gnu.)
|
|
|
|
|
|
|
|
srcinclude-tarball:
|
|
|
|
(cd ${RELEASEDIR}/src/usr/src; \
|
|
|
|
mkdir -p ${RELEASEDIR}/tarballs/src; \
|
|
|
|
tar -cf - include | \
|
|
|
|
${ZIPNSPLIT} ${RELEASEDIR}/tarballs/src/include.)
|
|
|
|
|
|
|
|
srclib-tarball:
|
|
|
|
(cd ${RELEASEDIR}/src/usr/src; \
|
|
|
|
mkdir -p ${RELEASEDIR}/tarballs/src; \
|
|
|
|
tar -cf - lib | \
|
|
|
|
${ZIPNSPLIT} ${RELEASEDIR}/tarballs/src/lib.)
|
|
|
|
|
|
|
|
srclibexec-tarball:
|
|
|
|
(cd ${RELEASEDIR}/src/usr/src; \
|
|
|
|
mkdir -p ${RELEASEDIR}/tarballs/src; \
|
|
|
|
tar -cf - libexec | \
|
|
|
|
${ZIPNSPLIT} ${RELEASEDIR}/tarballs/src/libexec.)
|
|
|
|
|
|
|
|
srcrelease-tarball:
|
|
|
|
(cd ${RELEASEDIR}/src/usr/src; \
|
|
|
|
mkdir -p ${RELEASEDIR}/tarballs/src; \
|
|
|
|
tar -cf - release | \
|
|
|
|
${ZIPNSPLIT} ${RELEASEDIR}/tarballs/src/release.)
|
|
|
|
|
|
|
|
srcsbin-tarball:
|
|
|
|
(cd ${RELEASEDIR}/src/usr/src; \
|
|
|
|
mkdir -p ${RELEASEDIR}/tarballs/src; \
|
|
|
|
tar -cf - sbin | \
|
|
|
|
${ZIPNSPLIT} ${RELEASEDIR}/tarballs/src/sbin.)
|
|
|
|
|
|
|
|
srcsecure-tarball:
|
|
|
|
(cd ${RELEASEDIR}/src/usr/src; \
|
|
|
|
mkdir -p ${RELEASEDIR}/tarballs/secure; \
|
|
|
|
tar -cf - secure | \
|
1995-01-27 07:49:46 +00:00
|
|
|
${ZIPNSPLIT} ${RELEASEDIR}/tarballs/secure/secrsrc.)
|
1995-01-17 19:57:35 +00:00
|
|
|
|
|
|
|
srclkm-tarball:
|
|
|
|
(cd ${RELEASEDIR}/src/usr/src; \
|
|
|
|
mkdir -p ${RELEASEDIR}/tarballs/src; \
|
|
|
|
tar -cf - lkm | \
|
|
|
|
${ZIPNSPLIT} ${RELEASEDIR}/tarballs/src/lkm.)
|
|
|
|
|
|
|
|
srcerelease-tarball:
|
|
|
|
(cd ${RELEASEDIR}/src/usr/src; \
|
|
|
|
mkdir -p ${RELEASEDIR}/tarballs/src; \
|
|
|
|
tar -cf - release | \
|
|
|
|
${ZIPNSPLIT} ${RELEASEDIR}/tarballs/src/release.)
|
|
|
|
|
|
|
|
srcebones-tarball:
|
|
|
|
(cd ${RELEASEDIR}/src/usr/src; \
|
|
|
|
mkdir -p ${RELEASEDIR}/tarballs/secure; \
|
|
|
|
tar -cf - eBones | \
|
|
|
|
${ZIPNSPLIT} ${RELEASEDIR}/tarballs/secure/ebones.)
|
|
|
|
|
|
|
|
srcshare-tarball:
|
|
|
|
(cd ${RELEASEDIR}/src/usr/src; \
|
|
|
|
mkdir -p ${RELEASEDIR}/tarballs/src; \
|
|
|
|
tar -cf - share | \
|
|
|
|
${ZIPNSPLIT} ${RELEASEDIR}/tarballs/src/share.)
|
|
|
|
|
|
|
|
srcsys-tarball:
|
|
|
|
(cd ${RELEASEDIR}/src/usr/src; \
|
|
|
|
mkdir -p ${RELEASEDIR}/tarballs/src; \
|
|
|
|
tar -cf - sys lkm | \
|
|
|
|
${ZIPNSPLIT} ${RELEASEDIR}/tarballs/src/sys.)
|
|
|
|
|
|
|
|
srcusrbin-tarball:
|
|
|
|
(cd ${RELEASEDIR}/src/usr/src; \
|
|
|
|
mkdir -p ${RELEASEDIR}/tarballs/src; \
|
|
|
|
tar -cf - usr.bin | \
|
|
|
|
${ZIPNSPLIT} ${RELEASEDIR}/tarballs/src/usrbin.)
|
|
|
|
|
|
|
|
srcusrsbin-tarball:
|
|
|
|
(cd ${RELEASEDIR}/src/usr/src; \
|
|
|
|
mkdir -p ${RELEASEDIR}/tarballs/src; \
|
|
|
|
tar -cf - usr.sbin | \
|
|
|
|
${ZIPNSPLIT} ${RELEASEDIR}/tarballs/src/usrsbin.)
|
|
|
|
|
|
|
|
src: srcbase-tarball srcbin-tarball srcetc-tarball \
|
|
|
|
srcgames-tarball srcgnu-tarball srcinclude-tarball \
|
|
|
|
srclib-tarball srcsecure-tarball srclibexec-tarball \
|
|
|
|
srcsbin-tarball srcshare-tarball srcsys-tarball \
|
|
|
|
srcusrbin-tarball srcusrsbin-tarball srcrelease-tarball \
|
|
|
|
srcebones-tarball srclkm-tarball srcrelease-tarball
|
1995-01-27 07:49:46 +00:00
|
|
|
( cd ${RELEASEDIR}/tarballs/src; \
|
1995-01-27 08:06:43 +00:00
|
|
|
sh -e ${.CURDIR}/scripts/mkchecksums.sh )
|
1995-01-28 22:29:27 +00:00
|
|
|
cp ${.CURDIR}/scripts/extract_src.sh \
|
|
|
|
${RELEASEDIR}/tarballs/src/extract.sh
|
1995-01-17 19:57:35 +00:00
|
|
|
|
1994-10-26 05:41:47 +00:00
|
|
|
.include <bsd.prog.mk>
|