]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - share/mk/bsd.subdir.mk
Import tzdata 2019c.
[FreeBSD/FreeBSD.git] / share / mk / bsd.subdir.mk
1 #       from: @(#)bsd.subdir.mk 5.9 (Berkeley) 2/1/91
2 # $FreeBSD$
3 #
4 # The include file <bsd.subdir.mk> contains the default targets
5 # for building subdirectories.
6 #
7 # For all of the directories listed in the variable SUBDIRS, the
8 # specified directory will be visited and the target made. There is
9 # also a default target which allows the command "make subdir" where
10 # subdir is any directory listed in the variable SUBDIRS.
11 #
12 #
13 # +++ variables +++
14 #
15 # DISTRIBUTION  Name of distribution. [base]
16 #
17 # SUBDIR        A list of subdirectories that should be built as well.
18 #               Each of the targets will execute the same target in the
19 #               subdirectories. SUBDIR.yes is automatically appended
20 #               to this list.
21 #
22 # +++ targets +++
23 #
24 #       distribute:
25 #               This is a variant of install, which will
26 #               put the stuff into the right "distribution".
27 #
28 #       See SUBDIR_TARGETS for list of targets that will recurse.
29 #
30 #       Targets defined in STANDALONE_SUBDIR_TARGETS will always be ran
31 #       with SUBDIR_PARALLEL and will not respect .WAIT or SUBDIR_DEPEND_
32 #       values.
33 #
34 #       SUBDIR_TARGETS and STANDALONE_SUBDIR_TARGETS can be appended to
35 #       via make.conf or src.conf.
36 #
37
38 .if !target(__<bsd.subdir.mk>__)
39 __<bsd.subdir.mk>__:
40
41 SUBDIR_TARGETS+= \
42                 all all-man analyze buildconfig buildfiles buildincludes \
43                 checkdpadd clean cleandepend cleandir cleanilinks \
44                 cleanobj depend distribute files includes installconfig \
45                 installfiles installincludes print-dir realinstall lint \
46                 maninstall manlint obj objlink tags \
47
48 # Described above.
49 STANDALONE_SUBDIR_TARGETS+= \
50                 all-man buildconfig buildfiles buildincludes check checkdpadd \
51                 clean cleandepend cleandir cleanilinks cleanobj files includes \
52                 installconfig installincludes installfiles print-dir \
53                 maninstall manlint obj objlink
54
55 # It is safe to install in parallel when staging.
56 .if defined(NO_ROOT)
57 STANDALONE_SUBDIR_TARGETS+= realinstall
58 .endif
59
60 .include <bsd.init.mk>
61
62 .if make(print-dir)
63 NEED_SUBDIR=    1
64 ECHODIR=        :
65 .SILENT:
66 .if ${RELDIR:U.} != "."
67 print-dir:      .PHONY
68         @echo ${RELDIR}
69 .endif
70 .endif
71
72 .if !defined(NEED_SUBDIR)
73 # .MAKE.DEPENDFILE==/dev/null is set by bsd.dep.mk to avoid reading
74 # Makefile.depend
75 .if ${.MAKE.LEVEL} == 0 && ${MK_DIRDEPS_BUILD} == "yes" && !empty(SUBDIR) && \
76     ${.MAKE.DEPENDFILE} != "/dev/null"
77 .include <meta.subdir.mk>
78 # ignore this
79 _SUBDIR:
80 .endif
81 .endif
82
83 DISTRIBUTION?=  base
84 .if !target(distribute)
85 distribute: .MAKE
86 .for dist in ${DISTRIBUTION}
87         ${_+_}cd ${.CURDIR}; \
88             ${MAKE} install installconfig -DNO_SUBDIR DESTDIR=${DISTDIR}/${dist} SHARED=copies
89 .endfor
90 .endif
91 # Convenience targets to run 'build${target}' and 'install${target}' when
92 # calling 'make ${target}'.
93 .for __target in files includes
94 .if !target(${__target})
95 ${__target}:    build${__target} install${__target}
96 .ORDER:         build${__target} install${__target}
97 .endif
98 .endfor
99
100 # Make 'install' supports a before and after target.  Actual install
101 # hooks are placed in 'realinstall'.
102 .if !target(install)
103 .for __stage in before real after
104 .if !target(${__stage}install)
105 ${__stage}install:
106 .endif
107 .endfor
108 install:        beforeinstall realinstall afterinstall
109 .ORDER:         beforeinstall realinstall afterinstall
110 .endif
111 .ORDER: all install
112
113 # SUBDIR recursing may be disabled for MK_DIRDEPS_BUILD
114 .if !target(_SUBDIR)
115
116 .if defined(SUBDIR) || defined(SUBDIR.yes)
117 SUBDIR:=${SUBDIR} ${SUBDIR.yes}
118 SUBDIR:=${SUBDIR:u}
119 .endif
120
121 # Subdir code shared among 'make <subdir>', 'make <target>' and SUBDIR_PARALLEL.
122 _SUBDIR_SH=     \
123                 if test -d ${.CURDIR}/$${dir}.${MACHINE_ARCH}; then \
124                         dir=$${dir}.${MACHINE_ARCH}; \
125                 fi; \
126                 ${ECHODIR} "===> ${DIRPRFX}$${dir} ($${target})"; \
127                 cd ${.CURDIR}/$${dir}; \
128                 ${MAKE} $${target} DIRPRFX=${DIRPRFX}$${dir}/
129
130 _SUBDIR: .USEBEFORE
131 .if defined(SUBDIR) && !empty(SUBDIR) && !defined(NO_SUBDIR)
132         @${_+_}target=${.TARGET:realinstall=install}; \
133             for dir in ${SUBDIR:N.WAIT}; do ( ${_SUBDIR_SH} ); done
134 .endif
135
136 ${SUBDIR:N.WAIT}: .PHONY .MAKE
137         ${_+_}@target=all; \
138             dir=${.TARGET}; \
139             ${_SUBDIR_SH};
140
141 .for __target in ${SUBDIR_TARGETS}
142 # Only recurse on directly-called targets.  I.e., don't recurse on dependencies
143 # such as 'install' becoming {before,real,after}install, just recurse
144 # 'install'.  Despite that, 'realinstall' is special due to ordering issues
145 # with 'afterinstall'.
146 .if !defined(NO_SUBDIR) && (make(${__target}) || \
147     (${__target} == realinstall && make(install)))
148 # Can ordering be skipped for this and SUBDIR_PARALLEL forced?
149 .if ${STANDALONE_SUBDIR_TARGETS:M${__target}}
150 _is_standalone_target=  1
151 SUBDIR:=        ${SUBDIR:N.WAIT}
152 .else
153 _is_standalone_target=  0
154 .endif
155 .if defined(SUBDIR_PARALLEL) || ${_is_standalone_target} == 1
156 __subdir_targets=
157 .for __dir in ${SUBDIR}
158 .if ${__dir} == .WAIT
159 __subdir_targets+= .WAIT
160 .else
161 __subdir_targets+= ${__target}_subdir_${DIRPRFX}${__dir}
162 __deps=
163 .if ${_is_standalone_target} == 0
164 .for __dep in ${SUBDIR_DEPEND_${__dir}}
165 __deps+= ${__target}_subdir_${DIRPRFX}${__dep}
166 .endfor
167 .endif
168 ${__target}_subdir_${DIRPRFX}${__dir}: .PHONY .MAKE .SILENT ${__deps}
169         @${_+_}target=${__target:realinstall=install}; \
170             dir=${__dir}; \
171             ${_SUBDIR_SH};
172 .endif
173 .endfor # __dir in ${SUBDIR}
174 ${__target}: ${__subdir_targets} .PHONY
175 .else
176 ${__target}: _SUBDIR .PHONY
177 .endif  # SUBDIR_PARALLEL || _is_standalone_target
178 .endif  # make(${__target})
179 .endfor # __target in ${SUBDIR_TARGETS}
180
181 .endif  # !target(_SUBDIR)
182
183 # Ensure all targets exist
184 .for __target in ${SUBDIR_TARGETS}
185 .if !target(${__target})
186 ${__target}:
187 .endif
188 .endfor
189
190 .endif