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