Makefile revision 5198
1#	$Id: Makefile,v 1.67 1994/12/22 21:34:36 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	gzip -9 -c < boot_12.flp > boot_12.flp.gz &
63
64boot_144.flp:
65	(cd ${.CURDIR}; ${MAKE} boot.flp)
66	mv boot.flp boot_144.flp
67	gzip -9 -c < boot_144.flp > boot_144.flp.gz &
68
69boot.flp: 
70	crunchgen ${.CURDIR}/boot_flp.conf
71	${MAKE} -f boot_flp.mk objs exe NOCRYPT=yes
72	-umount ${MNT}
73	-umount /dev/${FLOPPY}
74	# echo y | fdformat ${FLOPPY}
75	disklabel -w -B \
76		-b ${DESTDIR}/usr/mdec/fdboot -s ${DESTDIR}/usr/mdec/bootfd \
77		/dev/r${FLOPPY} ${FDLABEL}
78	newfs -c 80 -b 4096 -f 512 -i 8192 -m 0 -o space /dev/r${FLOPPY}
79	mount -o async /dev/${FLOPPY} ${MNT}
80	mkdir ${MNT}/dev ${MNT}/stand ${MNT}/mnt
81	strip ${.CURDIR}/../sys/compile/GENERIC/kernel
82	cp ${.CURDIR}/../sys/compile/GENERIC/kernel ${MNT}/kernel
83	cp ${DESTDIR}/usr/mdec/sdboot ${DESTDIR}/usr/mdec/bootsd ${MNT}/stand
84	( cd ${DESTDIR}/dev ; \
85		ls console tty ttyv1 null zero \
86		sd[0123][a-h] wd[0123][a-h] fd[01] \
87		rsd[0123][a-h] rwd[0123][a-h] rfd[01] \
88	| cpio -dumpv ${MNT}/dev \
89	)
90	gzip -9 < boot_flp > ${MNT}/stand/sysinstall
91	chmod 755 ${MNT}/stand/sysinstall
92	ln ${MNT}/stand/sysinstall ${MNT}/stand/newfs
93	ln ${MNT}/stand/sysinstall ${MNT}/stand/gzip
94	ln ${MNT}/stand/sysinstall ${MNT}/stand/fsck
95.if !defined(EVIL_FLOPPY)
96	install -m 400 -c ${.CURDIR}/../COPYRIGHT ${MNT}/COPYRIGHT
97	install -m 400 -c ${.CURDIR}/../share/FAQ/DISKSPACE.FAQ \
98		${MNT}/DISKSPACE.FAQ
99	install -m 400 -c ${.CURDIR}/../share/FAQ/RELNOTES.FreeBSD \
100		${MNT}/RELNOTES.FreeBSD
101.endif
102	install -m 400 -c ${.CURDIR}/../share/FAQ/TROUBLESHOOTING \
103		${MNT}/TROUBLESHOOTING
104	install -m 400 -c ${.CURDIR}/../share/FAQ/README-2.0 ${MNT}/README
105	touch ${MNT}/this_is_boot_flp
106	-umount ${MNT}
107	fsck /dev/r${FLOPPY}
108	dd if=/dev/r${FLOPPY} bs=${DDBS} count=${DDCOUNT} of=boot.flp
109	df -k /dev/r${FLOPPY}
110
111cpio.flp:
112	crunchgen ${.CURDIR}/cpio_flp_1.conf
113	${MAKE} -f cpio_flp_1.mk objs exe NOCRYPT=yes
114	for i in ${CPIO1} ; do rm -f ./$$i ; ln cpio_flp_1 ./$$i ; done
115	( cd /${DESTDIR} ; ls ${CPIO2} | cpio -H newc -oa ) | cpio -ivd
116	( cd ${.CURDIR} ; ls ${CPIO3} | cpio -H newc -oa ) | cpio -ivd
117	cp ${CPIO4} .
118	ls ${CPIO1} ${CPIO2} ${CPIO3} ${CPIO4B} | \
119		cpio -H newc -oa | gzip -9 | \
120		dd conv=osync > cpio.flp
121	gzip -9 -v < cpio.flp > cpio.flp.gz &
122
123floppies: boot_144.flp boot_12.flp cpio.flp
124
125release20: 
126.if !defined(RELEASEDIR)
127	@echo "Do NOT invoke this target without a RELEASEDIR defined."
128	@echo "It will otherwise blow away your root directory!"
129	@exit 1
130.endif
131	( cd ${.CURDIR} ; ${MAKE} clean)
132	-mkdir ${RELEASEDIR}
133	chflags -R noschg ${RELEASEDIR}/.
134	rm -rf ${RELEASEDIR}/*
135	( cd ${.CURDIR}/.. ;  \
136		${MAKE} all distribute 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 
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/share/misc/airport \
203	   ${RELEASEDIR}/bindist/usr/share/misc/birthtoken \
204	   ${RELEASEDIR}/bindist/usr/share/misc/flowers \
205	   ${RELEASEDIR}/bindist/usr/share/misc/na.phone \
206	   ${RELEASEDIR}/bindist/usr/share/misc/zipcodes \
207		${RELEASEDIR}/dict/usr/share/misc
208	mv ${RELEASEDIR}/bindist/usr/lib/*_p.a \
209		${RELEASEDIR}/proflibs/usr/lib
210	-cd ${RELEASEDIR} ; \
211	find ${EXTRADISTRIBUTIONS} -depth -type d -print | xargs rmdir
212	mkdir -p ${RELEASEDIR}/secrdist/usr
213	cd ${RELEASEDIR}/secrdist/usr ; cvs export -r ${RELEASETAG} ${SECRSRC}
214	mkdir -p ${RELEASEDIR}/srcdist/usr
215	cd ${RELEASEDIR}/srcdist/usr ; cvs export -r ${RELEASETAG} src
216	cd ${RELEASEDIR}/srcdist/usr/src ; rm -rf secure kerberosIV eBones
217
218tarballs:
219	rm -rf ${RELEASEDIR}/tarballs
220	mkdir ${RELEASEDIR}/tarballs
221	for i in ${DISTRIBUTIONS} ; \
222	do \
223		mkdir ${RELEASEDIR}/tarballs/$${i} ; \
224		( cd ${RELEASEDIR}/$${i}; \
225			tar cf - . | \
226			${ZIPNSPLIT} ${RELEASEDIR}/tarballs/$$i/$${i}.) ; \
227	( cd ${RELEASEDIR}/tarballs/$${i}; sh -e ${.CURDIR}/mkchecksums.sh ) ; \
228	cp ${.CURDIR}/extract.sh ${RELEASEDIR}/tarballs/$${i} ;\
229	done
230
231.include <bsd.prog.mk>
232