2 # $FreeBSD: src/Makefile,v 1.234.2.19 2003/04/16 09:59:40 ru Exp $
4 # The user-driven targets are:
6 # buildworld - Rebuild *everything* but the kernel, including glue to
8 # quickworld - Skip bootstrap, build and cross-build tool steps.
9 # realquickworld - Skip above steps, plus depend.
10 # crossworld - Just do the bootstrap, build, and cross-build steps.
11 # installworld - Install everything built by "buildworld", and the
12 # rescue tools and initrd image if they do not exist.
13 # installworld-force - Install everything built by "buildworld";
14 # special case for old systems.
15 # world - buildworld + installworld.
16 # buildkernel - Rebuild the kernel and the kernel-modules from scratch
17 # using build/bootstrap/cross tools from the last
19 # nativekernel - Rebuild the kernel and the kernel-modules from scratch
21 # quickkernel - Rebuild the kernel quickly (build or native), and do
22 # not clean out the obj modules.
23 # realquickkernel - Like quickkernel, but skips depend too.
24 # installkernel - Install the kernel and the kernel-modules.
25 # reinstallkernel - Reinstall the kernel and the kernel-modules.
26 # kernel - buildkernel + installkernel.
27 # preupgrade - Do certain upgrades (typically the addition of new
28 # users and groups used by installed utilities) before
30 # upgrade - Upgrade the files in /etc and also setup the rest
31 # of the system for DragonFly. ex. two compilers.
32 # initrd - Install the statically linked rescue tools and the
33 # initrd image built by "buildworld".
34 # backupworld - Copy /bin /sbin /usr/bin /usr/sbin /usr/lib
35 # /usr/libexec to manual backup dir.
36 # restoreworld - Install binaries from manual backup dir to world.
37 # restoreworld-auto - Install binaries from auto-backup dir to world;
38 # installworld target makes backup to auto-backup dir.
39 # backup-auto-clean - Delete backup from auto-backup dir.
40 # backup-clean - Delete backup from manual backup dir.
42 # This makefile is simple by design. The DragonFly make automatically reads
43 # /usr/share/mk/sys.mk unless the -m argument is specified on the
44 # command line. By keeping this makefile simple, it doesn't matter too
45 # much how different the installed mk files are from those in the source
46 # tree. This makefile executes a child make process, forcing it to use
47 # the mk files from the source tree which are supposed to DTRT.
49 # Most of the user-driven targets (as listed above) are implemented in
52 # For individuals wanting to build from the sources currently on their
53 # system, the simple instructions are:
55 # 1. `cd /usr/src' (or to the directory containing your source tree).
58 # For individuals wanting to upgrade their sources (even if only a
59 # delta of a few days):
61 # 1. `cd /usr/src' (or to the directory containing your source tree).
62 # 2. `make buildworld'
63 # 3. `make buildkernel KERNCONF=YOUR_KERNEL_HERE' (default X86_64_GENERIC).
64 # 4. `make installkernel KERNCONF=YOUR_KERNEL_HERE' (default X86_64_GENERIC).
65 # 5. `make installworld'
68 # 8. `make initrd' (after making sure that the new world works well).
70 # If TARGET_ARCH=arch (e.g. x86_64) is specified you can
71 # cross build world for other architectures using the buildworld target,
72 # and once the world is built you can cross build a kernel using the
75 # For more information, see the build(7) manual page.
78 TGTS
= all all-man buildkernel quickkernel realquickkernel nativekernel \
79 buildworld crossworld quickworld realquickworld checkdpadd
clean \
80 cleandepend cleandir depend everything \
81 hierarchy
install installcheck installkernel \
82 reinstallkernel installworld installworld-force initrd \
83 libraries lint maninstall \
84 manlint mk obj objlink regress rerelease
tags \
85 backupworld restoreworld restoreworld-auto \
86 backup-clean backup-auto-clean \
87 _obj _includes _libraries _depend _worldtmp \
88 _bootstrap-tools _build-tools _cross-tools
89 #TGTS+= mandiff # XXX temporary target
91 BITGTS
= files includes
92 BITGTS
:=${BITGTS} ${BITGTS
:S
/^
/build
/} ${BITGTS
:S
/^
/install/}
94 .ORDER
: buildworld installworld
95 .ORDER
: buildworld buildkernel
96 .ORDER
: buildworld nativekernel
97 .ORDER
: buildworld quickkernel
98 .ORDER
: buildworld realquickkernel
99 .ORDER
: buildkernel installkernel
100 .ORDER
: buildkernel reinstallkernel
101 .ORDER
: quickworld installworld
102 .ORDER
: quickworld buildkernel
103 .ORDER
: quickworld nativekernel
104 .ORDER
: quickworld quickkernel
105 .ORDER
: quickworld realquickkernel
106 .ORDER
: quickkernel installkernel
107 .ORDER
: quickkernel reinstallkernel
108 .ORDER
: realquickkernel installkernel
109 .ORDER
: realquickkernel reinstallkernel
111 PATH
= /sbin
:/bin
:/usr
/sbin
:/usr
/bin
:/usr
/local
/bin
:/usr
/pkg
/bin
112 MAKE
= PATH
=${PATH} make
-m
${.CURDIR
}/share
/mk
-f Makefile.inc1
115 # Handle the user-driven targets, using the source relative mk files.
117 ${TGTS} ${BITGTS}: .PHONY
121 # Set a reasonable default
124 STARTTIME
!= LC_ALL
=C date
128 # Attempt to rebuild and reinstall *everything*, with reasonable chance of
129 # success, regardless of how old your existing system is.
132 @echo
"--------------------------------------------------------------"
133 @echo
">>> make world started on ${STARTTIME}"
134 @echo
"--------------------------------------------------------------"
135 .if target
(pre-world
)
137 @echo
"--------------------------------------------------------------"
138 @echo
">>> starting pre-world target"
139 @echo
"--------------------------------------------------------------"
140 @cd
${.CURDIR
}; ${MAKE} pre-world
141 @echo
"--------------------------------------------------------------"
142 @echo
">>> pre-world target complete"
143 @echo
"--------------------------------------------------------------"
145 @cd
${.CURDIR
}; ${MAKE} buildworld
146 @cd
${.CURDIR
}; ${MAKE} -B installworld
147 .if target
(post-world
)
149 @echo
"--------------------------------------------------------------"
150 @echo
">>> starting post-world target"
151 @echo
"--------------------------------------------------------------"
152 @cd
${.CURDIR
}; ${MAKE} post-world
153 @echo
"--------------------------------------------------------------"
154 @echo
">>> post-world target complete"
155 @echo
"--------------------------------------------------------------"
158 @echo
"--------------------------------------------------------------"
159 @printf
">>> make world completed on `LC_ALL=C date`\n (started ${STARTTIME})\n"
160 @echo
"--------------------------------------------------------------"
165 # Short hand for `make buildkernel installkernel'
167 kernel
: buildkernel installkernel
170 # A simple test target used as part of the test to see if make supports
171 # the -m argument. Also test that make will only evaluate a conditional
172 # as far as is necessary to determine its value.
177 .if defined
(notdef
) && ${notdef
:tu
}
182 # Upgrade the installed make to the current version using the installed
183 # headers, libraries and build tools. This is required on installed versions
184 # prior to 2.2.5 in which the installed make doesn't support the -m argument.
188 @echo
"--------------------------------------------------------------"
189 @echo
" Upgrading the installed make"
190 @echo
"--------------------------------------------------------------"
191 @cd
${.CURDIR
}/usr.bin
/make
; \
192 make obj
&& make depend
&& make
all && make
install
195 # Handle the upgrade of /etc, post-installworld updating of static files
196 # and removing obsolete files.
200 @cd
${.CURDIR
}/etc
; make
-m
${.CURDIR
}/share
/mk preupgrade
203 @cd
${.CURDIR
}/etc
; make
-m
${.CURDIR
}/share
/mk upgrade_etc
204 .if
!defined
(NOMAN
) && !defined
(NO_MAKEDB_RUN
)
205 @cd
${.CURDIR
}/share
/man
; make makedb
207 @echo
"--------------------------------------------------------------"
208 @echo
"Now you can reboot into the new system! If the new system works as"
209 @echo
"expected, consider updating the rescue tools and initrd image with:"
210 @echo
" # cd ${.CURDIR}; make initrd"
211 @echo
"NOTE: Do this only after verifying the new system works as expected!"
213 @echo
"You also need to upgrade the 3rd-party packages with:"
214 @echo
" # pkg update; pkg upgrade [-f]"
215 @echo
"--------------------------------------------------------------"