80c08ed7aa6f9eb6f8117a5416b9e3ed7a262b1d
[dragonfly.git] / Makefile
1 #
2 # $FreeBSD: src/Makefile,v 1.234.2.19 2003/04/16 09:59:40 ru Exp $
3 #
4 # The user-driven targets are:
5 #
6 # buildworld          - Rebuild *everything*, including glue to help do
7 #                       upgrades.
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".
12 # installworld-force  - Install everything built by "buildworld";
13 #                       special case for old systems.
14 # world               - buildworld + installworld.
15 # buildkernel         - Rebuild the kernel and the kernel-modules from scratch
16 #                       using build/bootstrap/cross tools from the last
17 #                       buildworld.
18 # nativekernel        - Rebuild the kernel and the kernel-modules from scratch
19 #                       using native tools.
20 # quickkernel         - Rebuild the kernel quickly (build or native), and do
21 #                       not clean out the obj modules.
22 # realquickkernel     - Like quickkernel, but skips depend too.
23 # installkernel       - Install the kernel and the kernel-modules.
24 # reinstallkernel     - Reinstall the kernel and the kernel-modules.
25 # kernel              - buildkernel + installkernel.
26 # preupgrade          - Do certain upgrades in /etc (typically the addition of
27 #                       new users and groups used by installed utilities) before
28 #                       the installworld.
29 # upgrade             - Upgrade the files in /etc and also setup the rest
30 #                       of the system for DragonFly. ex. two compilers.
31 # most                - Build user commands, no libraries or include files.
32 # installmost         - Install user commands, no libraries or include files.
33 # backupworld         - Copy /bin /sbin /usr/bin /usr/sbin /usr/lib
34 #                       /usr/libexec to manual backup dir.
35 # restoreworld        - Install binaries from manual backup dir to world.
36 # restoreworld-auto   - Install binaries from auto-backup dir to world;
37 #                       installworld target makes backup to auto-backup dir.
38 # backup-auto-clean   - Delete backup from auto-backup dir.
39 # backup-clean        - Delete backup from manual backup dir.
40 #
41 # This makefile is simple by design. The DragonFly make automatically reads
42 # /usr/share/mk/sys.mk unless the -m argument is specified on the
43 # command line. By keeping this makefile simple, it doesn't matter too
44 # much how different the installed mk files are from those in the source
45 # tree. This makefile executes a child make process, forcing it to use
46 # the mk files from the source tree which are supposed to DTRT.
47 #
48 # Most of the user-driven targets (as listed above) are implemented in
49 # Makefile.inc1.  The exceptions are preupgrade and upgrade.
50 #
51 # For individuals wanting to build from the sources currently on their
52 # system, the simple instructions are:
53 #
54 # 1.  `cd /usr/src'  (or to the directory containing your source tree).
55 # 2.  `make world'
56 #
57 # For individuals wanting to upgrade their sources (even if only a
58 # delta of a few days):
59 #
60 # 1.  `cd /usr/src'       (or to the directory containing your source tree).
61 # 2.  `make buildworld'
62 # 3.  `make buildkernel KERNCONF=YOUR_KERNEL_HERE'   (default is X86_64_GENERIC).
63 # 4.  `make installkernel KERNCONF=YOUR_KERNEL_HERE' (default is X86_64_GENERIC).
64 # 5.  `make installworld'
65 # 6.  `make upgrade'
66 # 7.  `reboot'
67 #
68 # If TARGET_ARCH=arch (e.g. x86_64) is specified you can
69 # cross build world for other architectures using the buildworld target,
70 # and once the world is built you can cross build a kernel using the
71 # buildkernel target.
72 #
73 # For more information, see the build(7) manual page.
74 #
75
76 TGTS=   all all-man buildkernel quickkernel realquickkernel nativekernel \
77         buildworld crossworld quickworld realquickworld checkdpadd clean \
78         cleandepend cleandir depend everything \
79         hierarchy install installcheck installkernel \
80         reinstallkernel installmost installworld installworld-force \
81         libraries lint maninstall \
82         manlint mk most obj objlink regress rerelease tags \
83         rescue backupworld restoreworld restoreworld-auto \
84         backup-clean backup-auto-clean \
85         _obj _includes _libraries _depend _worldtmp \
86         _bootstrap-tools _build-tools _cross-tools
87 TGTS+=  mandiff # XXX temporary target
88
89 BITGTS= files includes
90 BITGTS:=${BITGTS} ${BITGTS:S/^/build/} ${BITGTS:S/^/install/}
91
92 .ORDER: buildworld installworld
93 .ORDER: buildworld buildkernel
94 .ORDER: buildworld nativekernel
95 .ORDER: buildworld quickkernel
96 .ORDER: buildworld realquickkernel
97 .ORDER: buildkernel installkernel
98 .ORDER: buildkernel reinstallkernel
99 .ORDER: quickworld installworld
100 .ORDER: quickworld buildkernel
101 .ORDER: quickworld nativekernel
102 .ORDER: quickworld quickkernel
103 .ORDER: quickworld realquickkernel
104 .ORDER: quickkernel installkernel
105 .ORDER: quickkernel reinstallkernel
106 .ORDER: realquickkernel installkernel
107 .ORDER: realquickkernel reinstallkernel
108
109 PATH=   /sbin:/bin:/usr/sbin:/usr/bin:/usr/local/bin:/usr/pkg/bin
110 MAKE=   PATH=${PATH} make -m ${.CURDIR}/share/mk -f Makefile.inc1
111
112 #
113 # Handle the user-driven targets, using the source relative mk files.
114 #
115 ${TGTS} ${BITGTS}:
116         @cd ${.CURDIR}; \
117                 ${MAKE} ${.TARGET}
118
119 # Set a reasonable default
120 .MAIN:  all
121
122 STARTTIME!= LC_ALL=C date
123 #
124 # world
125 #
126 # Attempt to rebuild and reinstall *everything*, with reasonable chance of
127 # success, regardless of how old your existing system is.
128 #
129 world:
130         @echo "--------------------------------------------------------------"
131         @echo ">>> make world started on ${STARTTIME}"
132         @echo "--------------------------------------------------------------"
133 .if target(pre-world)
134         @echo
135         @echo "--------------------------------------------------------------"
136         @echo ">>> starting pre-world target"
137         @echo "--------------------------------------------------------------"
138         @cd ${.CURDIR}; ${MAKE} pre-world
139         @echo "--------------------------------------------------------------"
140         @echo ">>> pre-world target complete"
141         @echo "--------------------------------------------------------------"
142 .endif
143         @cd ${.CURDIR}; ${MAKE} buildworld
144         @cd ${.CURDIR}; ${MAKE} -B installworld
145 .if target(post-world)
146         @echo
147         @echo "--------------------------------------------------------------"
148         @echo ">>> starting post-world target"
149         @echo "--------------------------------------------------------------"
150         @cd ${.CURDIR}; ${MAKE} post-world
151         @echo "--------------------------------------------------------------"
152         @echo ">>> post-world target complete"
153         @echo "--------------------------------------------------------------"
154 .endif
155         @echo
156         @echo "--------------------------------------------------------------"
157         @printf ">>> make world completed on `LC_ALL=C date`\n                        (started ${STARTTIME})\n"
158         @echo "--------------------------------------------------------------"
159
160 #
161 # kernel
162 #
163 # Short hand for `make buildkernel installkernel'
164 #
165 kernel: buildkernel installkernel
166
167 #
168 # A simple test target used as part of the test to see if make supports
169 # the -m argument.  Also test that make will only evaluate a conditional
170 # as far as is necessary to determine its value.
171 #
172 test:
173 .if defined(notdef)
174 .undef notdef
175 .if defined(notdef) && ${notdef:tu}
176 .endif
177 .endif
178
179 #
180 # Upgrade the installed make to the current version using the installed
181 # headers, libraries and build tools. This is required on installed versions
182 # prior to 2.2.5 in which the installed make doesn't support the -m argument.
183 #
184 make:
185         @echo
186         @echo "--------------------------------------------------------------"
187         @echo " Upgrading the installed make"
188         @echo "--------------------------------------------------------------"
189         @cd ${.CURDIR}/usr.bin/make; \
190                 make obj && make depend && make all && make install
191
192 #
193 # Handle the upgrade of /etc, post-installworld updating of static files
194 # and removing obsolete files.
195 #
196
197 preupgrade:
198         @cd ${.CURDIR}/etc; make -m ${.CURDIR}/share/mk preupgrade
199
200 upgrade:
201         @cd ${.CURDIR}/etc; make -m ${.CURDIR}/share/mk upgrade_etc
202 .if !defined(NOMAN) && !defined(NO_MAKEDB_RUN)
203         cd ${.CURDIR}/share/man; make makedb
204 .endif