aboutsummaryrefslogtreecommitdiff
path: root/release/Makefile
blob: 30b61b0065f3fe7a23a6aabec733949a39c3051d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
# $FreeBSD$
#
# make release [BUILDNAME=somename] CHROOTDIR=/some/dir CVSROOT=/cvs/dir \
#     [RELEASETAG=tag] [SVNROOT=svn://svn.freebsd.org/base] \
#     [SVNBRANCH=some/branch]
#
# Where "/some/dir" is the pathname of a directory on a some filesystem with
# at least 1000MB of free space, "somename" is what you want the release to
# call itself, "/cvs/dir" is where our source repo resides and, optionally,
# which CVS "tag" name should be used when checking out the sources to build
# the release (default is HEAD).
#
# Please note the support for building from SVN is preliminary and there
# are still questions about things like how to handle updates of
# /usr/src on production systems (csup(1) replacement).  It is a work
# in progress and may change as the other issues get worked out.
#
# Please note: the md(4) driver must be present in the kernel
# (either by being compiled in or available as a kld(4) module),
# otherwise the target 'release.8' and possibly others will fail.
#
# Note: If you add options to this file, please keep release(7) updated!
#
# Set these, release builder!
#
# Fixed version:
#BUILDNAME=9.0-CURRENT
#
# Automatic SNAP versioning:
DATE != date +%Y%m%d
BASE = 9.0
BUILDNAME?=${BASE}-${DATE}-SNAP
#
#CHROOTDIR=/junk/release
# If this is a -stable snapshot, then set
#RELEASETAG=RELENG_8
#
# To test a release with a source tree containing patches and
# other work. This tree will get copied instead of getting the
# src/ tree from a CVS checkout. For "rerelease", this will NOT
# be copied; cvs update will be used instead.
#EXTSRCDIR=/usr/src
#
# To use a checked-out ports collection directory instead of
# checking out from a local CVS repository, set this option.
#EXTPORTSDIR=/usr/ports
#
# To use a checked-out doc/ directory instead of
# checking out from a local CVS repository, set this option.
#EXTDOCDIR=/usr/doc
#
# To add other options to the CVS subcommands (co,up), set
#CVSCMDARGS="-D '01/01/2002 00:00:00 UTC'"
#
# To add other options to the CVS command, set
#CVSARGS="-lfq"
#
# To prefix the CVS command
#CVSPREFIX="/usr/bin/time"
#
# Where the CVS repository is
#CVSROOT="/home/ncvs"
#
# To add other options to the Subversion subcommands (co,up), set
#SVNCMDARGS="-r '{ 01/01/2002 00:00:00 UTC }'"
#
# To prefix the Subversion command
#SVNPREFIX="/usr/bin/time"
#
# Where the Subversion repository is
#SVNROOT=svn://svn.freebsd.org/base
#
# Subversion branch to build for src.  If this is not set then it is
# automatically computed from RELEASETAG.
#SVNBRANCH=stable/8
#
# Non-zero if ${RELEASETAG} is in the form "RELENG_ver_RELEASE"; we
# are building an official release.  Otherwise, we are building for
# a branch.
.if defined(RELEASETAG)
ISRELEASE!=	expr "${RELEASETAG}" : '^RELENG_.*_RELEASE$$' || true
.if ${ISRELEASE} != 0
# Convert "RELENG_ver_RELEASE" to "RELEASE_ver" for ports and doc trees.
AUXRELEASETAG!=	echo ${RELEASETAG} | sed -e 's/^RELENG_/RELEASE_/' -e 's/_RELEASE$$//'
DOCRELEASETAG?=		${AUXRELEASETAG}
PORTSRELEASETAG?=	${AUXRELEASETAG}
.endif
.endif

# Determine the Subversion source branch that corresponds to the requested
# RELEASETAG.
.if !defined(SVNBRANCH)
.if defined(RELEASETAG)
SVNBRANCH!=	echo "${RELEASETAG}" | awk -f ${.CURDIR}/svnbranch.awk
.else
SVNBRANCH=	head
.endif
.endif

# If you want to pass flags to the world build such as -j X, use
# WORLD_FLAGS.  Similarly, you can specify make flags for kernel
# builds via KERNEL_FLAGS.
#WORLD_FLAGS=-j4
#KERNEL_FLAGS=-j4

TARGET_ARCH?=	${MACHINE_ARCH}
.if ${TARGET_ARCH} == ${MACHINE_ARCH}
TARGET?=		${MACHINE}
TARGET_CPUARCH?=	${MACHINE_CPUARCH}
.else
TARGET?=		${TARGET_ARCH}
TARGET_CPUARCH?=	${TARGET_ARCH}
.endif
CROSSENV=	TARGET_ARCH=${TARGET_ARCH} TARGET=${TARGET}
CROSSMAKE=	${MAKE} ${CROSSENV}
NATIVEMAKE=	${MAKE} TARGET_ARCH=${MACHINE_ARCH} TARGET=${MACHINE}

# If you are using a local CVS repository with components stored in 
# non-standard modules, override these on the make commandline or
# in the environment.
RELEASESRCMODULE?=	src
RELEASEDOCMODULE?=	doc
RELEASEPORTSMODULE?=	ports

# Uncomment this to disable the doc.1 target.  Docs normally require
# the ports tree, so NOPORTS can be set together with NODOC in order
# to have neither ports or docs.  If only NOPORTS is set to YES, but
# docs are still desired, the DOMINIMALDOCPORTS logic below will only
# install the ports that are minimally required for the release note documentation.  This is
# intended as a compromise, less disk space is required than for using
# the entire ports collection (and much less time due to the huge number
# of directories it would create), but still quite a bit as well as some
# CPU cycles (some of the programs are C++, and things like ghostscript
# belong to the required ports nevertheless).
#
#NODOC=  YES
#NOPORTS=  YES

# When retrieving ports using the pkg_add -r method, set your proxies to these.
# src/release/${arch}/mkisoimages.sh can use these.
#HTTP_PROXY?=	www.example.com
#FTP_PROXY?=	ftp.example.com

# When creating ISO images, point ${CD_PACKAGE_TREE} to a directory containing
# the package split by an earlier invocation of the 'package-split' target.
#CD_PACKAGE_TREE=	/path/to/pkg

# Extra source tarballs; each argument is a pair of source dir and
# distribution name.  The dist name should not exceed 7 characters
# (another "s" for "source" will be prepended).
#EXTRA_SRC=	games/fortune fortune

# Modify this definition if you want the release notes 
# and other release documentation in a language other than English.
RELNOTES_LANG?=	en_US.ISO8859-1

# As an alternative to installing the entire ports collection (which
# can take a huge amount of time, in particular on slower disks),
# setting ${MINIMALDOCPORTS} allows to install and build just those
# ports that are really required for getting the docs up & running.
.if defined(NOPORTS) && !defined(NODOC)
DOMINIMALDOCPORTS=	YES
.include "Makefile.inc.docports"
RELEASEPORTSMODULE=	${MINIMALDOCPORTS} ports/sysutils/cdrtools
.endif

# Helper variable
.if defined(NOPORTS)
.if !defined(DOMINIMALDOCPORTS) || ${DOMINIMALDOCPORTS} != "YES"
NOPORTSATALL=	YES
.endif
.endif

#
# Doing 'make index' in /usr/ports requires Perl.
MAKEINDEXPORTS=	lang/perl5.10
DOCPORTS=	textproc/docproj
# Set this to wherever the distfiles required by release procedures.
.if defined(DOCDISTFILES)
# Respect DOCDISTFILES which is used before.
RELEASEDISTFILES?=	${DOCDISTFILES}
.else
RELEASEDISTFILES?=	${.CURDIR}/../../ports/distfiles
.endif
# Set this to 1 if you want -P to be used for automatic keyboard detection
# on the boot floppy.  WARNING: Breaks on some Athlon (K7) motherboards.
AUTO_KEYBOARD_DETECT?= 0

.if !defined(NODOC)
DIST_DOCS_ARCH_INDEP=	hardware readme relnotes errata
DIST_DOCS_ARCH_DEP=	
.endif

# Things which without too much trouble can be considered variables
# BASE_DISTS are special in that they get full /etc installation sets.
#
OTHER_DISTS?=	catpages manpages proflibs dict info
BASE_DISTS?=	base doc games ${ARCH_DISTS}
.if ${TARGET_ARCH} == "amd64" || ${TARGET_ARCH} == "powerpc64"
ARCH_DISTS?=	lib32
.endif
DISTRIBUTIONS?=	${BASE_DISTS} ${OTHER_DISTS}

#
# Build and package both GENERIC and SMP kernels if the target
# has both configuration files.  Otherwise only GENERIC is done.
#
.if ${TARGET_ARCH} == "powerpc64"
KERN_GENERIC?=	GENERIC64
.else
KERN_GENERIC?=	GENERIC
.endif

.if exists(${.CURDIR}/../sys/${TARGET}/conf/SMP)
KERNELS_BASE?=	${KERN_GENERIC} SMP
.else
KERNELS_BASE?=	${KERN_GENERIC}
.endif

# mountpoint for filesystems.
MNT=			/mnt

# Various floppy image parameters.
#

.undef MAKE_FLOPPIES
.if ${TARGET_ARCH} == "i386"
MAKE_DVD=
SEPARATE_LIVEFS=
SPLIT_MFSROOT=
.if ${TARGET} == "pc98"
MAKE_FLOPPIES=		true
SMALLFLOPPYSIZE=	1200
SMALLFLOPPYSPLITSIZE=	1152
SMALLFLOPPYLABEL=	fd1200
SPLIT_MFSROOT=
.endif
FLOPPYSIZE=		1440
FLOPPYSPLITSIZE=	1392
FLOPPYINODE=		40000
FLOPPYLABEL=		fd1440
BOOTINODE=		80000
MFSSIZE=		4320
MFSINODE=		8000
MFSLABEL=		minimum3
.elif ${TARGET_ARCH} == "sparc64"
DISKLABEL=		sunlabel
MAKE_DVD=
MFSSIZE=		4096
MFSINODE=		8192
MFSLABEL=		auto
MINIROOT=
SEPARATE_LIVEFS=
.elif ${TARGET_ARCH} == "ia64"
DISKLABEL=		""
MAKE_DVD=
MFSSIZE=		8192
MFSINODE=		8192
MFSLABEL=		auto
SEPARATE_LIVEFS=
.elif ${TARGET_ARCH} == "amd64"
MAKE_DVD=
FLOPPYSIZE=		1440
FLOPPYSPLITSIZE=	1392
FLOPPYINODE=		40000
FLOPPYLABEL=		fd1440
BOOTINODE=		80000
MFSSIZE=		4096
MFSINODE=		8192
MFSLABEL=		auto
SEPARATE_LIVEFS=
SPLIT_MFSROOT=
.elif ${TARGET_ARCH} == "powerpc"
DISKLABEL=		""
MFSSIZE=		4096
MFSINODE=		8192
MFSLABEL=		auto
SEPARATE_LIVEFS=
.elif ${TARGET_ARCH} == "powerpc64"
DISKLABEL=		""
MFSSIZE=		8192
MFSINODE=		8192
MFSLABEL=		auto
SEPARATE_LIVEFS=
.endif
.if defined(NO_FLOPPIES)
.undef MAKE_FLOPPIES
.endif

.if exists(/sbin/bsdlabel)
DISKLABEL?=		bsdlabel
.else
DISKLABEL?=		disklabel
.endif

ZIPPER=			gzip -9 --no-name
ZIPNSPLIT=		${ZIPPER} -c | split -b 1392k -

# Things which may get you into trouble if you change them
MTREEFILES=		${.CURDIR}/../etc/mtree
_R?=			/R
RD=			${_R}/stage
RND=			${RD}/release.doc
FD=			${_R}/ftp
CD=			${_R}/cdrom
CD_BOOT=		${CD}/bootonly
CD_DISC1=		${CD}/disc1
CD_DISC2=		${CD}/disc2
.if defined(MAKE_DVD)
CD_DVD1=		${CD}/dvd1
.endif
.if !defined(NODOC)
CD_DOCS=		${CD}/docs
.endif
.if defined(SEPARATE_LIVEFS)
CD_LIVEFS=		${CD}/livefs
.else
CD_LIVEFS=		${CD_DISC1}
.endif
_MK?=			${CHROOTDIR}/mk

# Where the bootstrap ports (see DOCPORTS) get installed.
LOCALDIR=		/usr/local/bin

.if ${TARGET} != ${MACHINE} && ${DISKLABEL} == "bsdlabel"
DOFS_SH=	${.CURDIR}/scripts/doFS.sh ${DISKLABEL} ${TARGET}
.else
DOFS_SH=	${.CURDIR}/scripts/doFS.sh ${DISKLABEL} ""
.endif

CRUNCH_TARGETS=	boot
.if ${TARGET_ARCH} == "i386"
CRUNCH_TARGETS+=fixit
.if ${TARGET} == "pc98"
CRUNCH_TARGETS+=fixit-small
.endif
.endif

.if defined(MAKE_FLOPPIES)
EXTRAS= floppies.1
.if ${TARGET_ARCH} == "i386"
EXTRAS+= floppies.2
.endif
EXTRAS+= floppies.3
.endif
EXTRAS+= ftp.1
.if !defined(NOCDROM)
EXTRAS+= cdrom.1 cdrom.2 cdrom.3
.if defined(MAKE_ISOS)
EXTRAS+= iso.1
.endif
.if ${TARGET} == "pc98"
BOOTABLE="-G"
.else
BOOTABLE="-b"
.endif
.endif

.if !defined(NODOC)
DOCREL= doc.1 doc.2
.endif

.if !make(release) && !make(rerelease) && !make(package-split)
BINMAKE!=	cd ${.CURDIR}/..; ${MAKE} -V BINMAKE
WMAKEENV!=	cd ${.CURDIR}/..; \
		${BINMAKE} ${CROSSENV} -f Makefile.inc1 -V WMAKEENV
WMAKE=		${WMAKEENV} ${BINMAKE}
.endif

CVS_SRCARGS=	-P
.if defined(RELEASETAG)
CVS_SRCARGS+=	-r ${RELEASETAG}
.endif

CVS_DOCARGS=	-P
.if defined(DOCRELEASETAG)
CVS_DOCARGS+=	-r ${DOCRELEASETAG}
.endif

CVS_PORTSARGS=	-P
.if defined(PORTSRELEASETAG)
CVS_PORTSARGS+=	-r ${PORTSRELEASETAG}
.endif

WORLDDIR?=	${.CURDIR}/..

release rerelease:
.if !defined(CHROOTDIR) || !defined(BUILDNAME)
	@echo "To make a release you must set CHROOTDIR and BUILDNAME" && false
.endif
.if !defined(NOPORTSATALL) && !defined(EXTPORTSDIR) && !defined(CVSROOT)
	@echo "Building ports requires CVSROOT or EXTPORTSDIR" && false
.endif
.if !defined(NODOC) && !defined(EXTDOCDIR) && !defined(CVSROOT)
	@echo "Building docs requires CVSROOT or EXTDOCDIR" && false
.endif
.if !defined(EXTSRCDIR) && !defined(CVSROOT) && !defined(SVNROOT)
	@echo "The source tree requires SVNROOT, CVSROOT, or EXTSRCDIR" && false
.endif
.if defined(NOPORTSATALL) && !defined(NODOC)
	@echo "Ports are required for building the release docs.  Either set NODOC or"
	@echo "unset NOPORTS, or set at least DOMINIMALDOCPORTS to YES!"
	@exit 1
.endif
.if defined(LOCAL_PATCHES) && !empty(LOCAL_PATCHES)
.for p in ${LOCAL_PATCHES}
.if !exists(${p})
	@echo "The patch file ${p} does not exist!"
	@exit 1
.endif
.endfor
.endif
.if defined(LOCAL_SCRIPT) && !exists(${LOCAL_SCRIPT})
	@echo "The local script ${LOCAL_SCRIPT} does not exist!"
	@exit 1
.endif
.if make(release)
.if exists(${CHROOTDIR})
# The first command will fail on a handful of files that have their schg
# flags set.  But it greatly speeds up the next two commands.
	# NB: clear any vestigial devfs mount, just in case
	-umount ${CHROOTDIR}/dev > /dev/null 2>&1
	-rm -rf ${CHROOTDIR} 2>/dev/null
	-chflags -R 0 ${CHROOTDIR}/.
	-rm -rf ${CHROOTDIR}
.endif
	mkdir -p ${CHROOTDIR}
	@echo ">>> make release for ${TARGET} started on `LC_ALL=C TZ=GMT date`"
	cd ${WORLDDIR} && ${NATIVEMAKE} -DWITHOUT_GAMES -DWITHOUT_HTML -DWITHOUT_LIB32 \
	    -DWITHOUT_MAN -DWITHOUT_NLS -DWITHOUT_PROFILE installworld DESTDIR=${CHROOTDIR}
	cd ${WORLDDIR} && ${NATIVEMAKE} distribution DESTDIR=${CHROOTDIR}
	if [ -f /etc/resolv.conf ]; then \
		cp -p /etc/resolv.conf ${CHROOTDIR}/etc; \
	fi
.if defined(EXTLOCALDIR)
	rm -rf ${CHROOTDIR}/usr/local
	cd ${CHROOTDIR}/usr && cp -R -H ${EXTLOCALDIR} local
.endif
	rm -rf ${CHROOTDIR}/usr/src
.if defined(EXTSRCDIR)
	cd ${CHROOTDIR}/usr && \
	    cp -R -H ${EXTSRCDIR} src
.elif defined(SVNROOT)
	cd ${CHROOTDIR}/usr && \
	    ${SVNPREFIX} svn co ${SVNCMDARGS} ${SVNROOT}/${SVNBRANCH} \
	    ${RELEASESRCMODULE} 
.else
	cd ${CHROOTDIR}/usr && \
	    ${CVSPREFIX} cvs -R ${CVSARGS} -d ${CVSROOT} \
	    co ${CVSCMDARGS} ${CVS_SRCARGS} ${RELEASESRCMODULE}
.endif
.if defined(LOCAL_PATCHES) && !empty(LOCAL_PATCHES)
.for p in ${LOCAL_PATCHES}
	patch -d ${CHROOTDIR}/usr/${RELEASESRCMODULE} ${PATCH_FLAGS} < ${p}
.endfor
.endif
.if defined(LOCAL_SCRIPT)
	cd ${CHROOTDIR} && env CHROOTDIR=${CHROOTDIR} BUILDNAME=${BUILDNAME} \
	    RELEASETAG=${RELEASETAG} ${LOCAL_SCRIPT}
.endif
	rm -rf ${CHROOTDIR}/usr/ports
.if !defined(NOPORTSATALL)
.if defined(EXTPORTSDIR)
	cd ${CHROOTDIR}/usr && cp -R -H ${EXTPORTSDIR} ports
	# If there are distfiles downloaded removing them
	rm -rf ports/distfiles/*
.else
	cd ${CHROOTDIR}/usr && ${CVSPREFIX} cvs -R ${CVSARGS} -d ${CVSROOT} \
	    co ${CVSCMDARGS} ${CVS_PORTSARGS} ${RELEASEPORTSMODULE}
.endif
.endif
.if !defined(NODOC)
	rm -rf ${CHROOTDIR}/usr/doc
.if defined(EXTDOCDIR)
	cd ${CHROOTDIR}/usr && cp -R -H ${EXTDOCDIR} doc
.else
	cd ${CHROOTDIR}/usr && ${CVSPREFIX} cvs -R ${CVSARGS} -d ${CVSROOT} \
	    co ${CVSCMDARGS} ${CVS_DOCARGS} ${RELEASEDOCMODULE}
.endif
	if [ -d ${RELEASEDISTFILES}/ ]; then \
		cp -rp ${RELEASEDISTFILES} ${CHROOTDIR}/usr/ports/distfiles; \
	else \
		mkdir -p ${CHROOTDIR}/usr/ports/distfiles; \
	fi
.if !defined(NO_PREFETCHDISTFILES)
	@cd ${.CURDIR} && ${MAKE} fetch-distfiles
.endif
.endif
.endif
.if make(rerelease)
.if !defined(RELEASENOUPDATE) && !defined(EXTSRCDIR)
.if defined(SVNROOT)
	cd ${CHROOTDIR}/usr/src && ${SVNPREFIX} svn switch ${SVNCMDARGS} \
	    ${SVNROOT}/${SVNBRANCH}
.elif !defined(RELEASETAG)
	cd ${CHROOTDIR}/usr/src && ${CVSPREFIX} cvs -R ${CVSARGS} -q \
	    update ${CVSCMDARGS} -P -d -A
.else
	cd ${CHROOTDIR}/usr/src && ${CVSPREFIX} cvs -R ${CVSARGS} -q \
	    update ${CVSCMDARGS} -P -d -r ${RELEASETAG}
.endif
	rm -f ${CHROOTDIR}/tmp/.world_done 
.if !defined(NOPORTS) && !defined(EXTPORTSDIR)
	cd ${CHROOTDIR}/usr/ports && ${CVSPREFIX} cvs -R ${CVSARGS} -q \
	    update ${CVSCMDARGS} -P -d
	rm -f ${CHROOTDIR}/tmp/.skip_ports_index
.endif
.if defined(DOMINIMALDOCPORTS) && ${DOMINIMALDOCPORTS} == "YES"
	for i in ${MINIMALDOCPORTS}; do \
	    ( cd ${CHROOTDIR}/usr/$$i && ${CVSPREFIX} cvs -R ${CVSARGS} -q \
		update ${CVSCMDARGS} -P -d ) ; \
	done
.endif
.if !defined(NODOC)
	cd ${CHROOTDIR}/usr/doc && ${CVSPREFIX} cvs -R ${CVSARGS} -q \
	    update ${CVSCMDARGS} -P -d
.endif
.endif
.endif
	# Add version information to those things that need it.
	if [ ! -f ${CHROOTDIR}/tmp/.world_done ]; then \
		cd ${CHROOTDIR}/usr/src/sys/conf && \
		mv newvers.sh foo && \
		sed "s/^RELEASE=.*/RELEASE=${BUILDNAME}/" foo > newvers.sh && \
		rm foo; \
	fi
	-test -f install.cfg && cp install.cfg ${CHROOTDIR}/usr/src/release
	echo "#!/bin/sh"			> ${_MK}
	echo "set -ex"				>> ${_MK}
	echo "trap 'umount /dev || true' 0"	>> ${_MK}
	echo "_RELTARGET=\$${1:-doRELEASE}"	>> ${_MK}
.for var in \
	AUTO_KEYBOARD_DETECT \
	BUILDNAME \
	CD_PACKAGE_TREE \
	DISTRIBUTIONS \
	DOMINIMALDOCPORTS \
	EXTRA_SRC \
	FTP_PASSIVE_MODE \
	FTP_PROXY \
	HTTP_PROXY \
	KERNELS \
	KERNELS_BASE \
	KERNEL_FLAGS \
	MAKE_DVD \
	MAKE_FLOPPIES \
	MAKE_ISOS \
	NOCDROM \
	NODOC \
	NOPORTS \
	NO_SHARED \
	NOSRC \
	NO_CPU_CFLAGS \
	NO_CPU_COPTFLAGS \
	NO_FLOPPIES \
	RELEASETAG \
	RELNOTES_LANG \
	SEPARATE_LIVEFS \
	TARGET \
	TARGET_ARCH \
	TARGET_CPUARCH \
	WORLD_FLAGS
.if defined(${var})
	echo "export ${var}=\"${${var}}\""	>> ${_MK}
.endif
.endfor
	# Don't remove this, or the build will fall over!
	echo "export RELEASEDIR=${_R}"		>> ${_MK}
	echo "export PATH=/bin:/usr/bin:/sbin:/usr/sbin:${LOCALDIR}"	>> ${_MK}
	echo "export MANBUILDCAT=YES"		>> ${_MK}
	# NB: these may fail if the host is running w/o devfs
	echo "umount /dev >/dev/null 2>&1 || true" >> ${_MK}
	echo "mount -t devfs devfs /dev >/dev/null 2>&1 || true"	>> ${_MK}
	echo "if [ ! -c /dev/null ]; then" >> ${_MK}
	echo "	echo /dev/null is not a device!" >> ${_MK}
	echo "	exit 1" >> ${_MK}
	echo "fi" >> ${_MK}
	echo "if [ -x /etc/rc.d/ldconfig ]; then" >> ${_MK}
	echo "	/etc/rc.d/ldconfig start"	>> ${_MK}
	echo "else"				>> ${_MK}
	echo "	ldconfig /lib /usr/lib /usr/local/lib || true" >> ${_MK}
	echo "fi"				>> ${_MK}
	echo "if [ ! -f /tmp/.world_done ]; then" >> ${_MK}
	echo "	cd /usr/src"			>> ${_MK}
	echo "	${CROSSMAKE} ${WORLD_FLAGS} -DNO_CLEAN buildworld && \\" >> ${_MK}
	echo "	touch /tmp/.world_done || exit 1" >> ${_MK}
	echo "fi"				>> ${_MK}
	echo "if [ ! -f /tmp/.skip_ports_index ]; then" >> ${_MK}
	echo "	echo \">>> make index started on \`LC_ALL=C TZ=GMT date\`\"" >> ${_MK}
	echo "	for i in ${MAKEINDEXPORTS}"	>> ${_MK}
	echo "	do"			>> ${_MK}
	echo "		cd /usr/ports/\$${i}"	>> ${_MK}
	echo "		env -i HTTP_PROXY=$${HTTP_PROXY} FTP_PROXY=$${FTP_PROXY} FTP_PASSIVE_MODE=$${FTP_PASSIVE_MODE:-no} PATH=$${PATH} \\" >> ${_MK}
	echo "		make all install clean BATCH=yes FORCE_PKG_REGISTER=yes" >> ${_MK}
	echo "	done"				>> ${_MK}
	echo "	cd /usr/ports"			>> ${_MK}
	echo "	rm -f INDEX*"			>> ${_MK}
	echo "	make index -DINDEX_PRISTINE"	>> ${_MK}
	echo "	rm -f INDEX*.tmp"		>> ${_MK}
	echo "	touch /tmp/.skip_ports_index"	>> ${_MK}
	echo "	echo \">>> make index finished on \`LC_ALL=C TZ=GMT date\`\"" >> ${_MK}
	echo "fi"				>> ${_MK}
	echo "cd /usr/src/release"		>> ${_MK}
	echo "make obj"				>> ${_MK}
	echo "make \$${_RELTARGET}"		>> ${_MK}
	echo "echo \">>> make ${.TARGET} for ${TARGET} finished on \`LC_ALL=C TZ=GMT date\`\"" >> ${_MK}
	chmod 755 ${_MK}
.if defined(NOPORTS)
	touch ${CHROOTDIR}/tmp/.skip_ports_index
.endif
	# Ensure md.ko is loaded if md(4) is not statically compiled into 
	# the kernel
	-mdconfig 2>/dev/null
	env -i /usr/sbin/chroot `dirname ${_MK}` /`basename ${_MK}`

clean:
	rm -rf ${CRUNCH_TARGETS:S/$/_crunch/} release.[0-8] ${EXTRAS}

fetch-distfiles:
	@for i in ${MAKEINDEXPORTS}; do \
		cd ${CHROOTDIR}/usr/ports/$$i && \
			make PORTSDIR=${CHROOTDIR}/usr/ports BATCH=yes \
			checksum-recursive ; \
	done
	@for i in ${DOCPORTS}; do \
		cd ${CHROOTDIR}/usr/ports/$$i && \
			make PORTSDIR=${CHROOTDIR}/usr/ports BATCH=yes \
			WITHOUT_X11=yes JADETEX=no WITHOUT_PYTHON=yes \
			checksum-recursive ; \
	done

# Clean out ${_R} and make the directory structure.
release.1:
	mkdir -p ${_R}
	-rm -rf ${_R}/* 2> /dev/null
	-chflags -R noschg ${_R}/.
	rm -rf ${_R}/*
	mkdir ${RD}
.if defined(MAKE_FLOPPIES)
	mkdir ${RD}/floppies
.endif
	mkdir ${RD}/trees
	for i in ${DISTRIBUTIONS}; do \
		mkdir ${RD}/trees/$$i && \
		mtree -deU -f ${MTREEFILES}/BSD.root.dist \
		    -p ${RD}/trees/$$i > /dev/null && \
		mtree -deU -f ${MTREEFILES}/BSD.usr.dist \
		    -p ${RD}/trees/$$i/usr > /dev/null && \
		mtree -deU -f ${MTREEFILES}/BSD.include.dist \
		    -p ${RD}/trees/$$i/usr/include > /dev/null; \
	done
	mkdir ${RD}/kernels
	for i in ${KERNELS_BASE} ${KERNELS}; do \
		mkdir -p ${RD}/kernels/$${i}; \
	done
	touch ${.TARGET}

# Install the system into the various distributions.
release.2:
	cd ${.CURDIR}/.. && ${CROSSMAKE} distrib-dirs DESTDIR=${RD}/trees/base
	cd ${.CURDIR}/.. && ${CROSSMAKE} ${WORLD_FLAGS} distributeworld \
	    DISTDIR=${RD}/trees
	sh ${.CURDIR}/scripts/mm-mtree.sh -F "${CROSSENV}" -D "${RD}/trees/base"
	touch ${.TARGET}

# Make and install the generic kernel(s).
release.3:
.for kernel in ${KERNELS_BASE} ${KERNELS}
	cd ${.CURDIR}/..; \
	${CROSSMAKE} ${KERNEL_FLAGS} \
 	    KERNCONF=${kernel} kernel \
 	    DESTDIR=${RD}/kernels KODIR=/${kernel}
.endfor
	touch ${.TARGET}

# Make and install the three crunched binaries which live on the floppies.
# You are not supposed to like this :-)
release.4:
	rm -rf ${RD}/crunch
	mkdir -p ${RD}/crunch
.for j in ${CRUNCH_TARGETS}
.if exists(${.CURDIR}/${TARGET}/${j}_crunch.conf)
	rm -rf ${j}_crunch
	mkdir ${j}_crunch
	cd ${j}_crunch; ${WMAKEENV} MAKEFLAGS="-m ${.CURDIR}/../share/mk" \
	    NO_WERROR= crunchgen -o \
	    ${.CURDIR}/${TARGET}/${j}_crunch.conf
	cd ${j}_crunch; ${WMAKE} -f ${j}_crunch.mk subclean
	cd ${.CURDIR}/..; ${BINMAKE} -f Makefile.inc1 _build-tools
	cd ${j}_crunch; CFLAGS="-Os -pipe" ${WMAKE} -f ${j}_crunch.mk \
	    -DNO_CPU_CFLAGS all
	${WMAKEENV} strip -R .comment ${j}_crunch/${j}_crunch
	mv ${j}_crunch/${j}_crunch ${RD}/crunch/${j}
.endif
.endfor
	touch ${.TARGET}

#
# --==## Fix up the distributions. ##==--
#
release.5:
	# Create any "synthetic dists" now.
	@for i in ${DISTRIBUTIONS}; do \
		if [ -f ${.CURDIR}/scripts/$${i}-make.sh ]; then \
			echo -n "Running $$i dist creation script... "; \
			env RD=${RD} sh ${.CURDIR}/scripts/$${i}-make.sh || echo "$$i distribution script returned bad status."; \
			echo "Done."; \
		fi \
	done \

	# Remove all the directories we don't need.
	-cd ${RD}/trees && \
		(find ${OTHER_DISTS} -path '*/var/empty' | xargs chflags noschg; \
		find ${OTHER_DISTS} -depth -type d -empty -delete)
	touch ${.TARGET}

#
# --==## Package up the tarballs from assembled trees ##==--
#
release.6:
	rm -rf ${RD}/dists
	mkdir -p ${RD}/dists
	@for i in ${DISTRIBUTIONS} ; \
	do \
		if [ -d ${RD}/trees/$${i} ] ; then \
			cd ${.CURDIR} && $(MAKE) doTARBALL \
				SD=${RD}/trees/$${i} \
				TN=$$i TD=$$i ARG="." && \
			echo "$${i} distribution is finished."; \
		fi ; \
	done
	@for i in ${KERNELS_BASE} ${KERNELS} ; \
	do \
		if [ -d ${RD}/kernels/$${i} ] ; then \
			cd ${.CURDIR} && $(MAKE) doTARBALL \
				SD=${RD}/kernels \
				TN=$$i TD=kernels ARG="$$i" && \
			echo "$${i} distribution is finished."; \
		fi ; \
	done
.if !defined(NOPORTS)
	# XXX: Inline stripped version of doTARBALL
	@rm -rf ${RD}/dists/ports/ports*
	@mkdir -p ${RD}/dists/ports
	@echo rolling ports/ports tarball
	@tar --exclude CVS --exclude .svn --exclude 'ports/distfiles/*' \
	  -czf ${RD}/dists/ports/ports.tgz -C /usr ports
	@cp ${.CURDIR}/scripts/ports-install.sh ${RD}/dists/ports/install.sh
	@(cd ${RD}/dists/ports; \
	  rm -f CHECKSUM.MD5 CHECKSUM.SHA256; \
	  md5 * > .CHECKSUM.MD5; \
	  sha256 * > .CHECKSUM.SHA256; \
	  mv .CHECKSUM.MD5 CHECKSUM.MD5; \
	  mv .CHECKSUM.SHA256 CHECKSUM.SHA256)
	@echo "ports distribution is finished."
.endif
	touch ${.TARGET}


#
# --==## Make source dists ##==--
#
release.7:
.if !defined(NOSRC)
	@cd ${.CURDIR} && $(MAKE) doTARBALL SD=/usr/src \
		TD=src TN=sbase ARG="[A-Z]*"
	@for i in `cd /usr/src && echo [a-z]*` ; do \
		if [ -d /usr/src/$$i ] ; then \
			cd ${.CURDIR} && $(MAKE) doTARBALL \
				TN=`echo s$$i | tr -d '.' | \
				    sed -e 's/usr/u/' \
					-e 's/kerberos5/krb5/'` \
				SD=/usr/src TD=src ARG="$$i" ; \
		fi ; \
	done
.if defined(EXTRA_SRC)
	@set ${EXTRA_SRC} && \
	while [ $$# -ge 2 ] ; do \
		if [ -d /usr/src/$$1 ] ; then \
			cd ${.CURDIR} && $(MAKE) doTARBALL \
				SD=/usr/src TN="s$$2" TD=src ARG="$$1" ; \
		fi && shift && shift ; \
	done
.endif
	(cd ${RD}/dists/src; \
	  rm -f CHECKSUM.MD5 CHECKSUM.SHA256; \
	  md5 * > .CHECKSUM.MD5; \
	  sha256 * > .CHECKSUM.SHA256; \
	  mv .CHECKSUM.MD5 CHECKSUM.MD5; \
	  mv .CHECKSUM.SHA256 CHECKSUM.SHA256)
	@echo "src distribution is finished."
.endif
	touch ${.TARGET}

# Build the memory root filesystem.
release.8:
	cp ${RD}/trees/base/etc/disktab /etc
	rm -rf ${RD}/mfsfd
	mkdir ${RD}/mfsfd
	cd ${RD}/mfsfd && \
		mkdir -p etc/defaults dev mnt stand/etc/defaults stand/help \
		var/empty
	@cd ${.CURDIR} && $(MAKE) installCRUNCH CRUNCH=boot \
		DIR=${RD}/mfsfd/stand ZIP=false
	( cd ${RD}/mfsfd && \
	  for dir in bin sbin ; do \
		ln -sf /stand $$dir; \
	  done )
	cp ${RD}/trees/base/sbin/dhclient-script ${RD}/mfsfd/stand
	cp ${.CURDIR}/../etc/master.passwd ${RD}/mfsfd/etc/master.passwd
	cp ${RD}/trees/base/etc/*pwd.db ${RD}/mfsfd/etc/
	( for F in defaults/rc.conf netconfig protocols ; do \
		sed -e '/^#.*$$/d' -e 's/[:space:]*#.*$$//g' \
		${RD}/trees/base/etc/$$F > ${RD}/mfsfd/stand/etc/$$F ; \
	  done )
	grep -E '^(ftp|nameserver|domain|sunrpc|cmd|nfsd)[^-\w]' \
	    ${RD}/trees/base/etc/services | \
	    sed -e '/^#.*$$/d' -e 's/[:space:]*#.*$$//g' \
	    > ${RD}/mfsfd/stand/etc/services
	grep 'operator' ${RD}/trees/base/etc/group \
	    > ${RD}/mfsfd/stand/etc/group
	ln ${RD}/mfsfd/stand/etc/services ${RD}/mfsfd/etc/services
	ln ${RD}/mfsfd/stand/etc/group ${RD}/mfsfd/etc/group
	ln ${RD}/mfsfd/stand/etc/netconfig ${RD}/mfsfd/etc/netconfig
	cp ${RD}/trees/base/COPYRIGHT ${RD}/mfsfd/stand/help/COPYRIGHT.hlp
.if !defined(NODOC)
	@for i in ${DIST_DOCS_ARCH_INDEP}; do \
	  cp ${RND}/${RELNOTES_LANG}/$$i/article.txt \
	      ${RD}/mfsfd/stand/help/`echo $${i} | tr 'a-z' 'A-Z'`.TXT; \
	done
	@for i in ${DIST_DOCS_ARCH_DEP}; do \
	  cp ${RND}/${RELNOTES_LANG}/$$i/${TARGET}/article.txt \
	      ${RD}/mfsfd/stand/help/`echo $${i} | tr 'a-z' 'A-Z'`.TXT; \
	done
.endif
	-test -f ${.CURDIR}/install.cfg \
	    && cp ${.CURDIR}/install.cfg ${RD}/mfsfd
	@mkdir -p ${RD}/mfsfd/boot
.if ${TARGET_ARCH} != "ia64" && ${TARGET_CPUARCH} != "powerpc"
	@cp ${RD}/trees/base/boot/boot* ${RD}/mfsfd/boot
.endif
.if ${TARGET} == "i386" || ${TARGET_ARCH} == "amd64"
	@cp ${RD}/trees/base/boot/mbr ${RD}/mfsfd/boot
.endif
	@tar --exclude CVS --exclude .svn -cf - \
		-C ${.CURDIR}/../usr.sbin/sysinstall help | \
		tar xf - -C ${RD}/mfsfd/stand
	@mkdir -p ${RD}/mfsroot
	sh -e ${DOFS_SH} ${RD}/mfsroot/mfsroot ${RD} ${MNT} \
	    ${MFSSIZE} ${RD}/mfsfd ${MFSINODE} ${MFSLABEL}
	@${ZIPPER} -fv ${RD}/mfsroot/mfsroot
	touch ${.TARGET}

KERNFLOPPYSET=		${RD}/floppyset/kern/kernel.gz
.if defined(SMALLFLOPPYSIZE)
SMALLKERNFLOPPYSET=	${RD}/floppyset/kern-small/kernel.gz
.endif
.if defined(SPLIT_MFSROOT)
MFSROOTFLOPPYSET=	${RD}/floppyset/mfsroot/mfsroot.gz
.if defined(SMALLFLOPPYSIZE)
SMALLMFSROOTFLOPPYSET=	${RD}/floppyset/mfsroot-small/mfsroot.gz
.endif
.endif

# Build boot and install floppies.
floppies.1:
	@${ZIPPER} -c ${RD}/kernels/${KERN_GENERIC}/kernel > ${RD}/kernels/kernel.gz
	@echo "Making the kernel boot floppies..."
	@cd ${.CURDIR} && ${MAKE} makeFloppySet FLOPPYBASE=kern \
	    FLOPPYDESC="Kernel" SPLITFILE=${RD}/kernels/kernel.gz
.if defined(SMALLFLOPPYSIZE)
	@echo "Making the small kernel boot floppies..."
	@cd ${.CURDIR} && ${MAKE} makeFloppySet FLOPPYBASE=kern-small \
	    FLOPPYDESC="Kernel" SPLITFILE=${RD}/kernels/kernel.gz \
	    FDSIZE="SMALL"
.endif
.if defined(SPLIT_MFSROOT)
	@echo "Making the mfsroot boot floppies..."
	@cd ${.CURDIR} && ${MAKE} makeFloppySet FLOPPYBASE=mfsroot \
	    FLOPPYDESC="Memory Filesystem" SPLITFILE=${RD}/mfsroot/mfsroot.gz
.if defined(SMALLFLOPPYSIZE)
	@echo "Making the small mfsroot boot floppies..."
	@cd ${.CURDIR} && ${MAKE} makeFloppySet FLOPPYBASE=mfsroot-small \
	    FLOPPYDESC="Memory Filesystem" SPLITFILE=${RD}/mfsroot/mfsroot.gz \
	    FDSIZE="SMALL"
.endif
	@cd ${.CURDIR} && ${MAKE} buildBootFloppy FSIMAGE="boot" \
	    KERNFILE="${KERNFLOPPYSET}.split ${KERNFLOPPYSET}.boot" \
	    MFSROOTFILE="${MFSROOTFLOPPYSET}.split ${MFSROOTFLOPPYSET}.boot"
.if defined(SMALLFLOPPYSIZE)
	@cd ${.CURDIR} && ${MAKE} buildBootFloppy FSIMAGE="boot-small" \
	    KERNFILE="${SMALLKERNFLOPPYSET}.split ${SMALLKERNFLOPPYSET}.boot" \
	    MFSROOTFILE="${SMALLMFSROOTFLOPPYSET}.split ${SMALLMFSROOTFLOPPYSET}.boot" \
	    FDSIZE="SMALL"
.endif
.else	# !SPLIT_MFSROOT
	@cd ${.CURDIR} && ${MAKE} buildBootFloppy FSIMAGE="boot" \
	    KERNFILE="${KERNFLOPPYSET}.split ${KERNFLOPPYSET}.boot" \
	    MFSROOTFILE=${RD}/mfsroot/mfsroot.gz
.if defined(SMALLFLOPPYSIZE)
	@cd ${.CURDIR} && ${MAKE} buildBootFloppy FSIMAGE="boot-small" \
	    KERNFILE="${SMALLKERNFLOPPYSET}.split ${SMALLKERNFLOPPYSET}.boot" \
	    MFSROOTFILE=${RD}/mfsroot/mfsroot.gz \
	    FDSIZE="SMALL"
.endif
.endif	# SPLIT_MFSROOT
	touch ${.TARGET}

# Build fixit floppy.
floppies.2:
	@echo "Making fixit floppy."
	@rm -rf ${RD}/fixitfd
	@mkdir ${RD}/fixitfd
	@cd ${RD}/fixitfd && \
	    mkdir -p dev stand bin sbin etc mnt mnt1 mnt2 mnt3 mnt4 tmp \
	    usr/share/misc
	@cp ${RD}/trees/base/etc/spwd.db ${RD}/trees/base/etc/group \
	    ${RD}/fixitfd/etc
	@sed -e 's/#.*//' ${RD}/trees/base/etc/protocols \
	    > ${RD}/fixitfd/etc/protocols
	@sed -e 's/#.*//' ${RD}/trees/base/usr/share/misc/scsi_modes \
	    > ${RD}/fixitfd/usr/share/misc/scsi_modes
	@cp ${.CURDIR}/fixit.profile ${RD}/fixitfd/.profile
	@cp ${.CURDIR}/fixit.services ${RD}/fixitfd/etc/services
	@cp ${.CURDIR}/scripts/tar.sh ${RD}/fixitfd/stand/tar
	@chmod 555 ${RD}/fixitfd/stand/tar
.if defined(SMALLFLOPPYSIZE)
	@cd ${.CURDIR} && ${MAKE} installCRUNCH CRUNCH=fixit-small \
	    DIR=${RD}/fixitfd/stand ZIP=false
	@sh -e ${DOFS_SH} ${RD}/floppies/fixit-small.flp ${RD} ${MNT} \
	    ${SMALLFLOPPYSIZE} ${RD}/fixitfd ${FLOPPYINODE} ${SMALLFLOPPYLABEL}
	@rm -rf ${RD}/fixitfd/stand
	@mkdir ${RD}/fixitfd/stand
.endif
	@cd ${.CURDIR} && ${MAKE} installCRUNCH CRUNCH=fixit \
	    DIR=${RD}/fixitfd/stand ZIP=false
	@sh -e ${DOFS_SH} ${RD}/floppies/fixit.flp ${RD} ${MNT} \
	    ${FLOPPYSIZE} ${RD}/fixitfd ${FLOPPYINODE} ${FLOPPYLABEL}
	touch ${.TARGET}

# Do our last minute floppies directory setup
floppies.3:
	@(cd ${RD}/floppies; md5 *.flp > CHECKSUM.MD5)
	@(cd ${RD}/floppies; sha256 *.flp > CHECKSUM.SHA256)
	touch ${.TARGET}

#
# --==## Setup a suitable ftp-area ##==--
#
ftp.1:
	@echo "Setting up FTP distribution area"
	@mkdir -p ${FD}
	-@ln -s . ${FD}/${BUILDNAME}
.if defined(MAKE_FLOPPIES)
	@cd ${RD} && find floppies -print | cpio -dumpl ${FD}
.endif
	@cd ${RD}/dists && find . -print | cpio -dumpl ${FD}
.if !defined(NODOC)
	@for i in ${DIST_DOCS_ARCH_INDEP}; do \
		cp ${RND}/${RELNOTES_LANG}/$$i/article.txt \
		    ${FD}/`echo $${i} | tr 'a-z' 'A-Z'`.TXT; \
		cp ${RND}/${RELNOTES_LANG}/$$i/article.html \
		    ${FD}/`echo $${i} | tr 'a-z' 'A-Z'`.HTM; \
	done
	@for i in ${DIST_DOCS_ARCH_DEP}; do \
		cp ${RND}/${RELNOTES_LANG}/$$i/${TARGET}/article.txt \
		    ${FD}/`echo $${i} | tr 'a-z' 'A-Z'`.TXT; \
		cp ${RND}/${RELNOTES_LANG}/$$i/${TARGET}/article.html \
		    ${FD}/`echo $${i} | tr 'a-z' 'A-Z'`.HTM; \
	done
	@cp ${RND}/${RELNOTES_LANG}/readme/docbook.css ${FD}
.endif
	@echo "CD_VERSION = ${BUILDNAME}" > ${FD}/cdrom.inf
	touch ${.TARGET}

# Build a live filesystem cdrom image
cdrom.1:
	@echo "Building CDROM live filesystem image"
	@mkdir -p ${CD_LIVEFS}
	@for i in ${DISTRIBUTIONS} ; \
	do \
		if [ -d ${RD}/trees/$${i} ] ; then \
			chflags -R noschg ${RD}/trees/$${i} || true ; \
			( cd ${RD}/trees/$${i} && \
			    find . -depth -print | cpio -dumpl ${CD_LIVEFS} ) ; \
		fi \
	done
.if defined(MAKE_DVD)
	@echo "Building DVD filesystem image as well as CDROM"
	@mkdir -p ${CD_DVD1}/${BUILDNAME}
	@for i in ${DISTRIBUTIONS} ; \
	do \
		if [ -d ${RD}/trees/$${i} ] ; then \
			chflags -R noschg ${RD}/trees/$${i} || true ; \
			( cd ${RD}/trees/$${i} && \
			    find . -depth -print | cpio -dumpl ${CD_DVD1} ) ; \
		fi \
	done
.endif
	@echo "Copy GENERIC kernel to boot area"
	@cp -Rp ${RD}/kernels/${KERN_GENERIC}/ ${CD_LIVEFS}/boot/kernel
	@rm -f ${CD_LIVEFS}/boot/kernel/*.symbols
	@rm -f ${CD_LIVEFS}/.profile
	@cp ${.CURDIR}/fixit.profile ${CD_LIVEFS}/.profile
	@ln -sf /rescue ${CD_LIVEFS}/stand
	@echo "Setting up CDROM boot area"
	@rm -f ${CD_LIVEFS}/boot/loader.conf
	@cp ${RD}/mfsroot/mfsroot.gz ${CD_LIVEFS}/boot/mfsroot.gz
	@echo 'mfsroot_load="YES"' > ${CD_LIVEFS}/boot/loader.conf
	@echo 'mfsroot_type="mfs_root"' >> ${CD_LIVEFS}/boot/loader.conf
	@echo 'mfsroot_name="/boot/mfsroot"' >> ${CD_LIVEFS}/boot/loader.conf
.if exists(${RD}/trees/base/boot/device.hints)
	# Break the link to device.hints so we can modify it
	@rm -f ${CD_LIVEFS}/boot/device.hints
	@cp ${RD}/trees/base/boot/device.hints ${CD_LIVEFS}/boot/device.hints
.endif
	@echo "CD_VERSION = ${BUILDNAME}" > ${CD_LIVEFS}/cdrom.inf
.if defined(MAKE_DVD)
	@cp -Rp ${RD}/kernels/${KERN_GENERIC}/ ${CD_DVD1}/boot/kernel
	@rm -f ${CD_DVD1}/boot/kernel/*.symbols
	@rm -f ${CD_DVD1}/.profile
	@cp ${.CURDIR}/fixit.profile ${CD_DVD1}/.profile
	@ln -sf /rescue ${CD_DVD1}/stand
	@echo "CD_VERSION = ${BUILDNAME}" > ${CD_DVD1}/cdrom.inf
	@rm -f ${CD_DVD1}/boot/loader.conf
	@cp ${RD}/mfsroot/mfsroot.gz ${CD_DVD1}/boot/mfsroot.gz
	@echo 'mfsroot_load="YES"' > ${CD_DVD1}/boot/loader.conf
	@echo 'mfsroot_type="mfs_root"' >> ${CD_DVD1}/boot/loader.conf
	@echo 'mfsroot_name="/boot/mfsroot"' >> ${CD_DVD1}/boot/loader.conf
.if exists(${RD}/trees/base/boot/device.hints)
	@rm -f ${CD_DVD1}/boot/device.hints
	@cp ${RD}/trees/base/boot/device.hints ${CD_DVD1}/boot/device.hints
.endif
.endif
	touch ${.TARGET}

# Build disc1 and disc2 cdrom images
cdrom.2:
	@echo "Building CDROM disc1 filesystem image"
	@mkdir -p ${CD_DISC1}/${BUILDNAME}
.if defined(MAKE_FLOPPIES)
	@cd ${RD} && find floppies -print | cpio -dumpl ${CD_DISC1}
.endif
	@cd ${RD}/dists && find . -print | cpio -dumpl ${CD_DISC1}/${BUILDNAME}
.if !defined(NODOC)
	@for i in ${DIST_DOCS_ARCH_INDEP}; do \
	  cp ${RND}/${RELNOTES_LANG}/$$i/article.txt \
	      ${CD_DISC1}/`echo $${i} | tr 'a-z' 'A-Z'`.TXT; \
	  cp ${RND}/${RELNOTES_LANG}/$$i/article.html \
	      ${CD_DISC1}/`echo $${i} | tr 'a-z' 'A-Z'`.HTM; \
	done
	@for i in ${DIST_DOCS_ARCH_DEP}; do \
	  cp ${RND}/${RELNOTES_LANG}/$$i/${TARGET}/article.txt \
	      ${CD_DISC1}/`echo $${i} | tr 'a-z' 'A-Z'`.TXT; \
	  cp ${RND}/${RELNOTES_LANG}/$$i/${TARGET}/article.html \
	      ${CD_DISC1}/`echo $${i} | tr 'a-z' 'A-Z'`.HTM; \
	done
	@cp ${RND}/${RELNOTES_LANG}/readme/docbook.css ${CD_DISC1}
.endif
.if defined(SEPARATE_LIVEFS)
	@cp -Rp ${CD_LIVEFS}/boot ${CD_DISC1}
	@echo "CD_VERSION = ${BUILDNAME}" > ${CD_DISC1}/cdrom.inf
.endif
	@echo "CD_VOLUME = 1" >> ${CD_DISC1}/cdrom.inf
	@echo "Building CDROM disc2 filesystem image"
	@mkdir -p ${CD_DISC2}
	@echo "CD_VERSION = ${BUILDNAME}" > ${CD_DISC2}/cdrom.inf
	@echo "CD_VOLUME = 2" >> ${CD_DISC2}/cdrom.inf
.if defined(MAKE_DVD)
.if defined(MAKE_FLOPPIES)
	@cd ${RD} && find floppies -print | cpio -dumpl ${CD_DVD1}
.endif
	@cd ${RD}/dists && find . -print | cpio -dumpl ${CD_DVD1}/${BUILDNAME}
.if !defined(NODOC)
	@for i in ${DIST_DOCS_ARCH_INDEP}; do \
	  cp ${RND}/${RELNOTES_LANG}/$$i/article.txt \
	      ${CD_DVD1}/`echo $${i} | tr 'a-z' 'A-Z'`.TXT; \
	  cp ${RND}/${RELNOTES_LANG}/$$i/article.html \
	      ${CD_DVD1}/`echo $${i} | tr 'a-z' 'A-Z'`.HTM; \
	done
	@for i in ${DIST_DOCS_ARCH_DEP}; do \
	  cp ${RND}/${RELNOTES_LANG}/$$i/${TARGET}/article.txt \
	      ${CD_DVD1}/`echo $${i} | tr 'a-z' 'A-Z'`.TXT; \
	  cp ${RND}/${RELNOTES_LANG}/$$i/${TARGET}/article.html \
	      ${CD_DVD1}/`echo $${i} | tr 'a-z' 'A-Z'`.HTM; \
	done
	@cp ${RND}/${RELNOTES_LANG}/readme/docbook.css ${CD_DVD1}
.endif
	@echo "CD_VERSION = ${BUILDNAME}" > ${CD_DVD1}/cdrom.inf
	@echo "CD_VOLUME = 1" >> ${CD_DVD1}/cdrom.inf
.endif
.if !defined(NODOC)
	@echo "Building CDROM docs filesystem image"
	@mkdir -p ${CD_DOCS}
	@echo "CD_VERSION = ${BUILDNAME}" > ${CD_DOCS}/cdrom.inf
	@echo "CD_VOLUME = 3" >> ${CD_DOCS}/cdrom.inf
.endif
	touch ${.TARGET}

#
# --==## Setup a suitable cdrom-area ##==--
#
cdrom.3:
.if defined(CD_BOOT)
	@echo "Building bootonly CDROM filesystem image"
	@mkdir -p ${CD_BOOT}
	@cp -Rp ${CD_LIVEFS}/boot ${CD_BOOT}
	@echo "CD_VERSION = ${BUILDNAME}" > ${CD_BOOT}/cdrom.inf
.if defined(MINIROOT)
	@echo "Building bootonly UFS filesystem image"
	@mkdir -p ${FD}/miniroot
	@sh -e ${DOFS_SH} ${FD}/miniroot/miniroot.ufs \
	    ${RD} ${MNT} 0 ${CD_BOOT} 8192 auto
	@${ZIPPER} -v ${FD}/miniroot/miniroot.ufs
.endif
.endif
	touch ${.TARGET}

.if make(iso.1)
.if defined(CD_PACKAGE_TREE)
.if exists(${CD_PACKAGE_TREE}/disc1)
CD_DISC1_PKGS=	${CD_PACKAGE_TREE}/disc1
.endif
.if exists(${CD_PACKAGE_TREE}/disc2)
CD_DISC2_PKGS=	${CD_PACKAGE_TREE}/disc2
.endif
# scripts/package-trees.sh names all discs according to the "discX"
# scheme where X is the number of the disc
.if exists(${CD_PACKAGE_TREE}/disc3)
CD_DOCS_PKGS=	${CD_PACKAGE_TREE}/disc3
.endif
.if exists(${CD_PACKAGE_TREE}/dvd1)
CD_DVD1_PKGS=	${CD_PACKAGE_TREE}/dvd1
.endif
.endif
.endif

iso.1:
.if exists(${.CURDIR}/${TARGET_CPUARCH}/mkisoimages.sh)
	@echo "Creating ISO images..."
.if defined(CD_BOOT)
	@sh ${.CURDIR}/${TARGET_CPUARCH}/mkisoimages.sh ${BOOTABLE} \
	    FreeBSD_bootonly \
	    ${CD}/FreeBSD-${BUILDNAME}-${TARGET}-bootonly.iso ${CD_BOOT}
.endif
	@sh ${.CURDIR}/${TARGET_CPUARCH}/mkisoimages.sh ${BOOTABLE} \
	    FreeBSD_Install \
	    ${CD}/FreeBSD-${BUILDNAME}-${TARGET}-disc1.iso ${CD_DISC1} \
	    ${CD_DISC1_PKGS}
	@sh ${.CURDIR}/${TARGET_CPUARCH}/mkisoimages.sh \
	    FreeBSD_Packages \
	    ${CD}/FreeBSD-${BUILDNAME}-${TARGET}-disc2.iso ${CD_DISC2} \
	    ${CD_DISC2_PKGS}
.if defined(MAKE_DVD)
	@sh ${.CURDIR}/${TARGET_CPUARCH}/mkisoimages.sh ${BOOTABLE} \
	    FreeBSD_Install \
	    ${CD}/FreeBSD-${BUILDNAME}-${TARGET}-dvd1.iso ${CD_DVD1} \
	    ${CD_DVD1_PKGS}
.endif
.if !defined(NODOC)
	@sh ${.CURDIR}/${TARGET_CPUARCH}/mkisoimages.sh \
	    FreeBSD_Documentation \
	    ${CD}/FreeBSD-${BUILDNAME}-${TARGET}-disc3.iso ${CD_DOCS} \
	    ${CD_DOCS_PKGS}
.endif
.if defined(SEPARATE_LIVEFS)
	@sh ${.CURDIR}/${TARGET_CPUARCH}/mkisoimages.sh ${BOOTABLE} \
	    FreeBSD_LiveFS \
	    ${CD}/FreeBSD-${BUILDNAME}-${TARGET}-livefs.iso ${CD_LIVEFS}
.endif
	@echo "Generating MD5 and SHA256 sums..."
	@(cd ${CD} && md5 *.iso > FreeBSD-${BUILDNAME}-${TARGET}-iso.CHECKSUM.MD5)
	@(cd ${CD} && sha256 *.iso > FreeBSD-${BUILDNAME}-${TARGET}-iso.CHECKSUM.SHA256)
	touch ${.TARGET}
.else
	@echo "Do not know how to create an ISO for ${TARGET_CPUARCH}."
.endif

#
# --==## Documentation Project tools required to build the release notes ##==--
#
doc.1:
	@echo "Making docproj tools..."
	@for i in ${DOCPORTS}; do \
	    cd /usr/ports/$$i && \
	    env -i FTP_PASSIVE_MODE=$${FTP_PASSIVE_MODE:-no} PATH=$${PATH} \
		make all install clean BATCH=yes WITHOUT_X11=yes JADETEX=no \
		WITHOUT_PYTHON=yes FORCE_PKG_REGISTER=yes; \
	done
	touch ${.TARGET}

#
# --==## RELNOTESng:  Next-generation replacements for *.TXT files ##==--
#
doc.2:
	@echo "Making release documentation..."
	@cd ${.CURDIR}/doc && make all install clean 'FORMATS=html txt' \
	    INSTALL_COMPRESSED='' URLS_ABSOLUTE=YES DOCDIR=${RND}
	touch ${.TARGET}

# Various "subroutine" and other supporting targets.

# RD=
# SD=
# TD=
# ARG=
doTARBALL:
.if !defined(SD)
	@echo "SD undefined in doTARBALL" && exit 1
.endif
.if !defined(TD)
	@echo "TD undefined in doTARBALL" && exit 1
.endif
.if !defined(ARG)
	@echo "ARG undefined in doTARBALL" && exit 1
.endif
	@rm -rf ${RD}/dists/${TD}/${TN}*
	@mkdir -p ${RD}/dists/${TD}
	@( cd ${SD} && \
		tn=`echo ${TN} | tr 'A-Z' 'a-z'` && \
		echo rolling ${TD}/$$tn tarball &&\
		tar --exclude CVS --exclude .svn --exclude obj --exclude BOOTMFS -cf - ${ARG} | \
		${ZIPNSPLIT} ${RD}/dists/${TD}/$$tn. && \
		sh ${.CURDIR}/scripts/info.sh ${RD}/dists/${TD}/$$tn \
		    > ${RD}/dists/${TD}/$$tn.inf && \
		if [ -f ${.CURDIR}/scripts/$${TD}-install.sh ]; then \
			cp -p ${.CURDIR}/scripts/$${TD}-install.sh \
			    ${RD}/dists/${TD}/install.sh && \
			chmod +x ${RD}/dists/${TD}/install.sh; \
		fi && \
		if [ "${SD}" != "/usr/src" ]; then \
			mtree -c -i -p ${SD}/${ARG} \
			  -k gname,md5digest,mode,nlink,uname,size,link,type \
			  > ${RD}/dists/${TD}/$$tn.mtree ; \
		else \
			true; \
		fi; \
		( cd ${RD}/dists/${TD}; \
		rm -f CHECKSUM.MD5 CHECKSUM.SHA256; \
		md5 * > .CHECKSUM.MD5; \
		sha256 * > .CHECKSUM.SHA256; \
		mv .CHECKSUM.MD5 CHECKSUM.MD5; \
		mv .CHECKSUM.SHA256 CHECKSUM.SHA256) \
	)

doRELEASE: release.1 release.2 ${DOCREL} release.3 release.4 \
    release.5 release.6 release.7 release.8 ${EXTRAS}
	@echo "Release done"

floppies:
	@rm -f release.4 release.8 floppies.[123]
	@cd ${.CURDIR} && ${MAKE} release.4 release.8 floppies.1 floppies.2 \
	    floppies.3
	@cd ${RD} && find floppies -print | cpio -dumpl ${FD}

installCRUNCH:
.if !defined(CRUNCH)
	@echo "CRUNCH undefined in installCRUNCH" && exit 1
.endif
.if !defined(DIR)
	@echo "DIR undefined in installCRUNCH" && exit 1
.endif
.if !defined(ZIP)
	@echo "ZIP undefined in installCRUNCH" && exit 1
.endif
	@if ${ZIP} ; then \
		${ZIPPER} < ${RD}/crunch/${CRUNCH} > ${DIR}/${CRUNCH}_crunch ; \
	else \
		ln -f ${RD}/crunch/${CRUNCH} ${DIR}/${CRUNCH}_crunch ; \
	fi
	@chmod 555 ${DIR}/${CRUNCH}_crunch
	@if [ -f ${.CURDIR}/${TARGET}/${CRUNCH}_crunch.conf ] ; then \
		for i in `crunchgen -l ${.CURDIR}/${TARGET}/${CRUNCH}_crunch.conf` ; do \
			ln -f ${DIR}/${CRUNCH}_crunch ${DIR}/$$i ; \
		done \
	else \
		for i in `crunchgen -l ${.CURDIR}/${CRUNCH}_crunch.conf` ; do \
			ln -f ${DIR}/${CRUNCH}_crunch ${DIR}/$$i ; \
		done \
	fi

#
# --==## Build a floppy set for a splitfs file ##==--
#
# FLOPPYBASE - basename of floppy image files
# FLOPPYDESC - description of floppy set
# SPLITFILE - filename of the file to split
# FDSIZE - if specified and "small", small floppy is created

.if make(makeFloppySet)
SPLITDIR=	${RD}/floppyset/${FLOPPYBASE}
.if defined(FDSIZE) && ${FDSIZE} == "SMALL"
FLPSPLITSIZE=	${SMALLFLOPPYSPLITSIZE}
FLPSIZE=	${SMALLFLOPPYSIZE}
FLPLABEL=	${SMALLFLOPPYLABEL}
.else
FLPSPLITSIZE=	${FLOPPYSPLITSIZE}
FLPSIZE=	${FLOPPYSIZE}
FLPLABEL=	${FLOPPYLABEL}
.endif
.endif

makeFloppySet:
.if !defined(FLOPPYBASE)
	@echo "FLOPPYBASE undefined in ${.TARGET}" && exit 1
.endif
.if !defined(FLOPPYDESC)
	@echo "FLOPPYDESC undefined in ${.TARGET}" && exit 1
.endif
.if !defined(SPLITFILE)
	@echo "SPLITFILE undefined in ${.TARGET}" && exit 1
.endif
	sh ${.CURDIR}/scripts/split-file.sh ${SPLITFILE} \
	    ${RD}/floppyset/${FLOPPYBASE} ${FLPSPLITSIZE} "${FLOPPYDESC}"
	( splitfile=${SPLITDIR}/`basename ${SPLITFILE}`.split ; \
	lines=`cat $${splitfile} | wc -l`; \
	lines=$$(($$lines - 1)) ; \
	for line in `jot $$lines`; do \
		file=`head -n $$(($${line} + 1)) $${splitfile} | tail -1 | cut -f 1 -d ' '` ; \
		sh -e ${DOFS_SH} ${RD}/floppies/${FLOPPYBASE}$${line}.flp \
		${RD} ${MNT} ${FLPSIZE} ${SPLITDIR}/$${file} \
		${BOOTINODE} ${FLPLABEL}; \
	done )

#
# --==## Build a boot floppy ##==--
#
# FSIMAGE - base floppy image name
# FDSIZE - if specified and "small", small floppy is created
# KERNFILE - path to kernel split file
# MFSROOTFILE - path to mfsroot split file

.if make(buildBootFloppy)
IMAGEDIR=	${RD}/image.${FSIMAGE}
BOOTDIR=	${RD}/trees/base/boot
HINTSFILE=	${BOOTDIR}/device.hints
ACPI_KO=	${RD}/kernels/${KERN_GENERIC}/acpi.ko
IMAGEFILE=	${RD}/floppies/${FSIMAGE}.flp
.if defined(FDSIZE) && ${FDSIZE} == "SMALL"
FLPSIZE=	${SMALLFLOPPYSIZE}
FLPLABEL=	${SMALLFLOPPYLABEL}
.else
FLPSIZE=	${FLOPPYSIZE}
FLPLABEL=	${FLOPPYLABEL}
.endif
.endif

buildBootFloppy:
.if !defined(FSIMAGE)
	@echo "FSIMAGE undefined in ${.TARGET}" && exit 1
.endif
.if !defined(KERNFILE)
	@echo "KERNFILE undefined in ${.TARGET}" && exit 1
.endif
.if !defined(MFSROOTFILE)
	@echo "MFSROOTFILE undefined in ${.TARGET}" && exit 1
.endif
	@echo "Running ${.TARGET} for ${FSIMAGE}"
	@rm -rf ${IMAGEDIR}
	@mkdir ${IMAGEDIR}
	@echo "Setting up /boot directory for ${FSIMAGE} floppy"
	@mkdir -p ${IMAGEDIR}/boot
.if ${TARGET_ARCH} == "i386"
	@${WMAKEENV} kgzip -v -l ${RD}/trees/base/usr/lib/kgzldr.o -o \
	    ${IMAGEDIR}/boot/loader ${BOOTDIR}/loader
.else
	@cp ${BOOTDIR}/loader ${IMAGEDIR}/boot
.endif
	@cp -Rp ${BOOTDIR}/*.4th ${BOOTDIR}/defaults ${BOOTDIR}/loader.help \
	    ${BOOTDIR}/loader.rc ${IMAGEDIR}/boot
.if exists(${HINTSFILE})
	@cp ${HINTSFILE} ${IMAGEDIR}/boot/device.hints
	@${ZIPPER} ${IMAGEDIR}/boot/device.hints
.endif
	@${ZIPPER} ${IMAGEDIR}/boot/*.4th ${IMAGEDIR}/boot/loader.help \
	    ${IMAGEDIR}/boot/defaults/loader.conf
	@echo 'bootfile="/kernel"' > ${IMAGEDIR}/boot/loader.conf
.if exists(${ACPI_KO})
	@${ZIPPER} -c ${ACPI_KO} > ${IMAGEDIR}/acpi.ko.gz
	@echo 'acpi_load="YES"' >> ${IMAGEDIR}/boot/loader.conf
	@echo 'acpi_name="/acpi.ko"' >> ${IMAGEDIR}/boot/loader.conf
	@echo 'acpi_before="read -p \"Insert boot floppy and press Enter\""' >> ${IMAGEDIR}/boot/loader.conf
.endif
	@echo 'mfsroot_load="YES"' >> ${IMAGEDIR}/boot/loader.conf
	@echo 'mfsroot_type="mfs_root"' >> ${IMAGEDIR}/boot/loader.conf
	@echo 'mfsroot_name="/mfsroot"' >> ${IMAGEDIR}/boot/loader.conf
.if !exists(${ACPI_KO})
	@echo 'mfsroot_before="read -p \"Insert boot floppy and press Enter\""' >> ${IMAGEDIR}/boot/loader.conf
.endif
.if defined(SPLIT_MFSROOT)
	@echo 'mfsroot_after="read -p \"Insert boot floppy and press Enter\""' >> ${IMAGEDIR}/boot/loader.conf
.endif
.if ${TARGET_ARCH} == "i386" || ${TARGET_ARCH} == "amd64"
.if ${AUTO_KEYBOARD_DETECT}
	@echo "-P" >> ${IMAGEDIR}/boot.config
.endif
.endif
	@rm -f ${IMAGEFILE}
	@cp ${KERNFILE} ${MFSROOTFILE} ${IMAGEDIR}
	sh -e ${DOFS_SH} ${IMAGEFILE} ${RD} ${MNT} ${FLPSIZE} ${IMAGEDIR} \
	    ${BOOTINODE} ${FLPLABEL}
	@echo "Created ${RD}/floppies/${FSIMAGE}.flp"

.if make(package-split)
# Targets related to making a package split
#
# PKG_COPY instructs the script to copy the actual package files rather than
#     make hard links
# PKG_TREE is the path to the package tree to be split
# PKG_DEST is the path to the destination tree to create the split in
# PKG_VERBOSE asks for verbose output of the layout process
# PKG_INDEX is the path to the INDEX file. By default ${PKG_TREE}/INDEX.

.if defined(PKG_COPY)
PKG_DO_COPY=	cp
.else
PKG_DO_COPY=	ln
.endif
PKG_WRKIDX=	${PKG_DEST}/INDEX.master
PKG_ENV?=
.if defined(TARGET_ARCH)
PKG_ENV+=	PKG_ARCH=${TARGET_ARCH}
.endif
.if defined(PKG_VERBOSE)
PKG_ENV+=	PKG_VERBOSE=1
.endif
PKG_INDEX?=	${PKG_TREE}/INDEX

package-split:
.if !defined(PKG_TREE)
	@echo "PKG_TREE must be defined" && exit 1
.endif
.if !defined(PKG_DEST)
	@echo "PKG_DEST must be defined" && exit 1
.endif
	@env ${PKG_ENV} python ${.CURDIR}/scripts/package-split.py \
	    ${PKG_INDEX} ${PKG_WRKIDX}
	@env ${PKG_ENV} sh ${.CURDIR}/scripts/package-trees.sh ${PKG_DO_COPY} \
	    ${PKG_WRKIDX} ${PKG_TREE} ${PKG_DEST}
.endif

.include <bsd.obj.mk>