Makefile revision 4886
1#	$Id: Makefile,v 1.60 1994/11/30 15:54:39 jkh Exp $
2#
3
4FLOPPY=		fd0
5
6
7# Evil floppies are, of course, 1.2MB floppies.
8.if defined(EVIL_FLOPPY)
9FDLABEL=	fd1200
10DDBS=		15k
11DDCOUNT=	80
12.else
13FDLABEL=	fd1440
14DDBS=		18k
15DDCOUNT=	80
16.endif
17
18MNT=		/mnt
19
20CPIO1= basename cat chmod cksum cp cu date dd df dmesg echo ed expr hostname 
21CPIO1+= kill ln ls mkdir mt mv rcp rm rmdir sh sleep stty sync tar test tip [ 
22CPIO1+= -sh badsect chown clri disklabel dump dmesg fdisk fsck getopt ifconfig 
23CPIO1+= init mknod mount mount_cd9660 mount_msdos mount_nfs ncftp newfs ping pwd
24CPIO1+= reboot restore slattach swapon umount route
25CPIO1+= rdump rrestore halt ft
26CPIO1+= ftp rsh sed telnet rlogin grep
27
28CPIO2=  etc/services etc/protocols
29
30# bininst MUST be the last file on the cpio floppy.  It's used to detect
31# a successful extraction.
32CPIO3=	miscfuncs.sh instdist.sh netinst.sh adduser.sh bininst
33
34CPIO4=	/usr/sbin/tzsetup
35CPIO4B=	tzsetup
36
37# Somewhat on the rough side...
38CLEANFILES+=	*.o *.c *.cache *.mk *.lo ${CPIO1} *.flp *.gz 
39CLEANFILES+=	boot_flp cpio_flp_1
40
41MTREE_DIR=	${.CURDIR}/../etc/mtree
42
43ZIPNSPLIT=	gzip --no-name -9 -c | split -b 240640 -
44
45hierarchy:
46	mtree -deU -f ${MTREE_DIR}/BSD.root.dist  -p ${DESTDIR}/
47	mtree -deU -f ${MTREE_DIR}/BSD.var.dist   -p ${DESTDIR}/var
48	mtree -deU -f ${MTREE_DIR}/BSD.usr.dist   -p ${DESTDIR}/usr
49.if defined(MAKE_LOCAL)
50	mtree -deU -f ${MTREE_DIR}/BSD.local.dist -p ${DESTDIR}/usr/local
51.endif
52	rm -f ${DESTDIR}/sys
53	ln -s usr/src/sys ${DESTDIR}/sys
54
55kernel:	${.CURDIR}/../sys/i386/conf/GENERIC
56	(cd ${.CURDIR}/../sys/i386/conf; config GENERIC)
57	(cd ${.CURDIR}/../sys/compile/GENERIC; ${MAKE} depend; ${MAKE} all; )
58
59boot_12.flp: 
60	(cd ${.CURDIR}; EVIL_FLOPPY=yes ${MAKE} boot.flp)
61	mv boot.flp boot_12.flp
62
63boot_144.flp:
64	(cd ${.CURDIR}; ${MAKE} boot.flp)
65	mv boot.flp boot_144.flp
66
67boot.flp: 
68	crunchgen ${.CURDIR}/boot_flp.conf
69	${MAKE} -f boot_flp.mk objs exe
70	-umount ${MNT}
71	-umount /dev/${FLOPPY}
72	# echo y | fdformat ${FLOPPY}
73	disklabel -w -B \
74		-b ${DESTDIR}/usr/mdec/fdboot -s ${DESTDIR}/usr/mdec/bootfd \
75		/dev/r${FLOPPY} ${FDLABEL}
76	newfs -c 80 -b 4096 -f 512 -i 8192 -m 0 -o space /dev/r${FLOPPY}
77	mount -o async /dev/${FLOPPY} ${MNT}
78	mkdir ${MNT}/dev ${MNT}/stand ${MNT}/mnt
79	strip -x ${.CURDIR}/../sys/compile/GENERIC/kernel
80	cp ${.CURDIR}/../sys/compile/GENERIC/kernel ${MNT}/kernel
81	cp ${DESTDIR}/usr/mdec/sdboot ${DESTDIR}/usr/mdec/bootsd ${MNT}/stand
82	( cd ${DESTDIR}/dev ; \
83		ls console tty ttyv1 null zero \
84		sd[0123][a-h] wd[0123][a-h] fd[01] \
85		rsd[0123][a-h] rwd[0123][a-h] rfd[01] \
86	| cpio -dumpv ${MNT}/dev \
87	)
88	gzip -9 < boot_flp > ${MNT}/stand/sysinstall
89	chmod 755 ${MNT}/stand/sysinstall
90	ln ${MNT}/stand/sysinstall ${MNT}/stand/newfs
91	ln ${MNT}/stand/sysinstall ${MNT}/stand/gzip
92	ln ${MNT}/stand/sysinstall ${MNT}/stand/fsck
93.if !defined(EVIL_FLOPPY)
94	install -m 400 -c ${.CURDIR}/../COPYRIGHT ${MNT}/COPYRIGHT
95	install -m 400 -c ${.CURDIR}/../share/FAQ/DISKSPACE.FAQ \
96		${MNT}/DISKSPACE.FAQ
97	install -m 400 -c ${.CURDIR}/../share/FAQ/RELNOTES.FreeBSD \
98		${MNT}/RELNOTES.FreeBSD
99.endif
100	install -m 400 -c ${.CURDIR}/../share/FAQ/TROUBLESHOOTING \
101		${MNT}/TROUBLESHOOTING
102	install -m 400 -c ${.CURDIR}/../share/FAQ/README-2.0 ${MNT}/README
103	touch ${MNT}/this_is_boot_flp
104	-umount ${MNT}
105	fsck /dev/r${FLOPPY}
106	dd if=/dev/r${FLOPPY} bs=${DDBS} count=${DDCOUNT} of=boot.flp
107	df -k /dev/r${FLOPPY}
108
109cpio.flp:
110	crunchgen ${.CURDIR}/cpio_flp_1.conf
111	${MAKE} -f cpio_flp_1.mk objs exe
112	for i in ${CPIO1} ; do rm -f ./$$i ; ln cpio_flp_1 ./$$i ; done
113	( cd /${DESTDIR} ; ls ${CPIO2} | cpio -H newc -oa ) | cpio -ivd
114	( cd ${.CURDIR} ; ls ${CPIO3} | cpio -H newc -oa ) | cpio -ivd
115	cp ${CPIO4} .
116	ls ${CPIO1} ${CPIO2} ${CPIO3} ${CPIO4B} | \
117		cpio -H newc -oa | gzip -9 | \
118		dd conv=osync > cpio.flp
119	gzip -9 -v < cpio.flp > cpio.flp.gz
120	ls -l cpio.flp*
121
122crunch:
123	crunchgen ${.CURDIR}/boot_flp.conf
124	${MAKE} -f boot_flp.mk objs exe
125	crunchgen ${.CURDIR}/cpio_flp_1.conf
126	${MAKE} -f cpio_flp_1.mk objs exe
127
128floppies: crunch boot_144.flp boot_12.flp cpio.flp
129
130release20: 
131	( cd ${.CURDIR} ; ${MAKE} clean)
132	-mkdir ${RELEASEDIR}
133	chflags -R noschg ${RELEASEDIR}/.
134	rm -rf ${RELEASEDIR}/*
135	( cd ${.CURDIR}/.. ;  \
136		${MAKE} world NOCRYPT=yes)
137	( cd ${.CURDIR}/../etc ;  \
138		${MAKE} release-dirs )
139	( cd ${.CURDIR} ; ${MAKE} obj)
140	( cd ${.CURDIR} ;  \
141		${MAKE} kernel DESTDIR=${RELEASEDIR}/filesys )
142	install ${COPY} -m 644 ${.CURDIR}/../sys/compile/GENERIC/kernel \
143		${RELEASEDIR}/filesys/kernel
144	( cd ${.CURDIR} ;  \
145		${MAKE} hierarchy DESTDIR=${RELEASEDIR}/filesys )
146	( cd ${.CURDIR}/../etc ; \
147		${MAKE} distribution DESTDIR=${RELEASEDIR}/filesys \
148			NOCRYPT=yes SHARED=copies)
149	( cd ${RELEASEDIR}/filesys; \
150		tar cf - . | \
151		${ZIPNSPLIT} ${RELEASEDIR}/tarballs/bindist/bindist.)
152	cp ${.CURDIR}/extract.sh ${RELEASEDIR}/tarballs/bindist
153	( cd ${RELEASEDIR}/tarballs/bindist; ${.CURDIR}/mkchecksums.sh )
154	( cd ${.CURDIR} ;  \
155		${MAKE} floppies )
156foo:
157	( cd ${.CURDIR}/../etc ; \
158		${MAKE} srcebones-tarball \
159			DESTDIR=${RELEASEDIR}/filesys \
160			NOCRYPT=yes SHARED=copies )
161		
162bar:
163	( cd ${.CURDIR}/../etc ; \
164		${MAKE} des-tarball \
165			DESTDIR=${RELEASEDIR}/filesys \
166			SHARED=copies )
167
168EXTRADISTRIBUTIONS=	secrdist games manpages proflibs dict krb srcdist
169DISTRIBUTIONS=	bindist ${EXTRADISTRIBUTIONS}
170MTREEFILES=	${.CURDIR}/../etc/mtree
171SECRSRC=	src/secure src/eBones
172
173distribute: 
174	-mkdir ${RELEASEDIR}
175	chflags -R noschg ${RELEASEDIR}/.
176	rm -rf ${RELEASEDIR}/*
177	for i in ${DISTRIBUTIONS} ; \
178	do \
179	mkdir ${RELEASEDIR}/$$i ; \
180	mtree -deU -f ${MTREEFILES}/BSD.root.dist -p ${RELEASEDIR}/$$i/ ; \
181	mtree -deU -f ${MTREEFILES}/BSD.var.dist -p ${RELEASEDIR}/$$i/var ; \
182	mtree -deU -f ${MTREEFILES}/BSD.usr.dist -p ${RELEASEDIR}/$$i/usr ; \
183	done 
184	( cd ${.CURDIR} ;  \
185		${MAKE} kernel DESTDIR=${RELEASEDIR}/filesys )
186	install ${COPY} -m 644 ${.CURDIR}/../sys/compile/GENERIC/kernel \
187		${RELEASEDIR}/bindist/kernel
188
189beforetarballs:
190	rm -rf ${RELEASEDIR}/manpages/usr/share/man
191	mv ${RELEASEDIR}/bindist/usr/share/man \
192		${RELEASEDIR}/manpages/usr/share/man
193	rm -rf ${RELEASEDIR}/games/usr/games
194	mv ${RELEASEDIR}/bindist/usr/games \
195		${RELEASEDIR}/games/usr/games
196	rm -rf ${RELEASEDIR}/games/usr/share/games
197	mv ${RELEASEDIR}/bindist/usr/share/games \
198		${RELEASEDIR}/games/usr/share/games
199	rm -rf ${RELEASEDIR}/dict/usr/share/dict
200	mv ${RELEASEDIR}/bindist/usr/share/dict \
201		${RELEASEDIR}/dict/usr/share/dict
202	mv ${RELEASEDIR}/bindist/usr/lib/*_p.a \
203		${RELEASEDIR}/proflibs/usr/lib
204	-cd ${RELEASEDIR} ; \
205	find ${EXTRADISTRIBUTIONS} -depth -type d -print | xargs rmdir
206	cd ${RELEASEDIR}/secrdist/usr ; cvs export -r ${RELEASETAG} ${SECRSRC}
207	cd ${RELEASEDIR}/srcdist/usr ; cvs export -r ${RELEASETAG} src
208	cd ${RELEASEDIR}/srcdist/usr/src ; rm -rf secure kerberosIV eBones
209
210tarballs:
211	rm -rf ${RELEASEDIR}/tarballs
212	mkdir ${RELEASEDIR}/tarballs
213	for i in ${DISTRIBUTIONS} ; \
214	do \
215		mkdir ${RELEASEDIR}/tarballs/$${i} ; \
216		( cd ${RELEASEDIR}/$${i}; \
217			tar cf - . | \
218			${ZIPNSPLIT} ${RELEASEDIR}/tarballs/$$i/$${i}.) ; \
219	( cd ${RELEASEDIR}/tarballs/$${i}; sh -e ${.CURDIR}/mkchecksums.sh ) ; \
220	cp ${.CURDIR}/extract.sh ${RELEASEDIR}/tarballs/$${i} ;\
221	done
222
223.include <bsd.prog.mk>
224