]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - share/mk/bsd.prog.mk
MFC r284152:
[FreeBSD/stable/10.git] / share / mk / bsd.prog.mk
1 #       from: @(#)bsd.prog.mk   5.26 (Berkeley) 6/25/91
2 # $FreeBSD$
3
4 .include <bsd.init.mk>
5
6 .SUFFIXES: .out .o .c .cc .cpp .cxx .C .m .y .l .ln .s .S .asm
7
8 # XXX The use of COPTS in modern makefiles is discouraged.
9 .if defined(COPTS)
10 .warning COPTS should be CFLAGS.
11 CFLAGS+=${COPTS}
12 .endif
13
14 .if ${MK_ASSERT_DEBUG} == "no"
15 CFLAGS+= -DNDEBUG
16 NO_WERROR=
17 .endif
18
19 .if defined(DEBUG_FLAGS)
20 CFLAGS+=${DEBUG_FLAGS}
21 CXXFLAGS+=${DEBUG_FLAGS}
22
23 .if ${MK_CTF} != "no" && ${DEBUG_FLAGS:M-g} != ""
24 CTFFLAGS+= -g
25 .endif
26 .endif
27
28 .if defined(PROG_CXX)
29 PROG=   ${PROG_CXX}
30 .endif
31
32 .if !empty(LDFLAGS:M-Wl,*--oformat,*) || !empty(LDFLAGS:M-static)
33 MK_DEBUG_FILES= no
34 .endif
35
36 .if defined(CRUNCH_CFLAGS)
37 CFLAGS+=${CRUNCH_CFLAGS}
38 .else
39 .if ${MK_DEBUG_FILES} != "no" && empty(DEBUG_FLAGS:M-g) && \
40     empty(DEBUG_FLAGS:M-gdwarf-*)
41 CFLAGS+= -g
42 CTFFLAGS+= -g
43 .endif
44 .endif
45
46 .if !defined(DEBUG_FLAGS)
47 STRIP?= -s
48 .endif
49
50 .if defined(NO_SHARED) && (${NO_SHARED} != "no" && ${NO_SHARED} != "NO")
51 LDFLAGS+= -static
52 .endif
53
54 .if defined(USEPRIVATELIB)
55 LDFLAGS+= -L${_SHLIBDIRPREFIX}${LIBPRIVATEDIR} -rpath ${LIBPRIVATEDIR}
56 .endif
57
58 .if ${MK_DEBUG_FILES} != "no"
59 PROG_FULL=${PROG}.full
60 # Use ${DEBUGDIR} for base system debug files, else .debug subdirectory
61 .if defined(BINDIR) && (\
62     ${BINDIR} == "/bin" ||\
63     ${BINDIR} == "/libexec" ||\
64     ${BINDIR} == "/sbin" ||\
65     ${BINDIR:C%/usr/(bin|bsdinstall|games|libexec|lpr|sendmail|sm.bin|sbin)(/.*)?%/usr/bin%} == "/usr/bin"\
66      )
67 DEBUGFILEDIR=   ${DEBUGDIR}${BINDIR}
68 .else
69 DEBUGFILEDIR?=  ${BINDIR}/.debug
70 DEBUGMKDIR=
71 .endif
72 .else
73 PROG_FULL=      ${PROG}
74 .endif
75
76 .if defined(PROG)
77 PROGNAME?=      ${PROG}
78
79 .if defined(SRCS)
80
81 OBJS+=  ${SRCS:N*.h:R:S/$/.o/g}
82
83 .if target(beforelinking)
84 beforelinking: ${OBJS}
85 ${PROG_FULL}: beforelinking
86 .endif
87 ${PROG_FULL}: ${OBJS}
88 .if defined(PROG_CXX)
89         ${CXX} ${CXXFLAGS} ${LDFLAGS} -o ${.TARGET} ${OBJS} ${LDADD}
90 .else
91         ${CC} ${CFLAGS} ${LDFLAGS} -o ${.TARGET} ${OBJS} ${LDADD}
92 .endif
93 .if ${MK_CTF} != "no"
94         ${CTFMERGE} ${CTFFLAGS} -o ${.TARGET} ${OBJS}
95 .endif
96
97 .else   # !defined(SRCS)
98
99 .if !target(${PROG})
100 .if defined(PROG_CXX)
101 SRCS=   ${PROG}.cc
102 .else
103 SRCS=   ${PROG}.c
104 .endif
105
106 # Always make an intermediate object file because:
107 # - it saves time rebuilding when only the library has changed
108 # - the name of the object gets put into the executable symbol table instead of
109 #   the name of a variable temporary object.
110 # - it's useful to keep objects around for crunching.
111 OBJS+=  ${PROG}.o
112
113 .if target(beforelinking)
114 beforelinking: ${OBJS}
115 ${PROG_FULL}: beforelinking
116 .endif
117 ${PROG_FULL}: ${OBJS}
118 .if defined(PROG_CXX)
119         ${CXX} ${CXXFLAGS} ${LDFLAGS} -o ${.TARGET} ${OBJS} ${LDADD}
120 .else
121         ${CC} ${CFLAGS} ${LDFLAGS} -o ${.TARGET} ${OBJS} ${LDADD}
122 .endif
123 .if ${MK_CTF} != "no"
124         ${CTFMERGE} ${CTFFLAGS} -o ${.TARGET} ${OBJS}
125 .endif
126 .endif # !target(${PROG})
127
128 .endif # !defined(SRCS)
129
130 .if ${MK_DEBUG_FILES} != "no"
131 ${PROG}: ${PROG_FULL} ${PROGNAME}.debug
132         ${OBJCOPY} --strip-debug --add-gnu-debuglink=${PROGNAME}.debug \
133             ${PROG_FULL} ${.TARGET}
134
135 ${PROGNAME}.debug: ${PROG_FULL}
136         ${OBJCOPY} --only-keep-debug ${PROG_FULL} ${.TARGET}
137 .endif
138
139 .if     ${MK_MAN} != "no" && !defined(MAN) && \
140         !defined(MAN1) && !defined(MAN2) && !defined(MAN3) && \
141         !defined(MAN4) && !defined(MAN5) && !defined(MAN6) && \
142         !defined(MAN7) && !defined(MAN8) && !defined(MAN9)
143 MAN=    ${PROG}.1
144 MAN1=   ${MAN}
145 .endif
146 .endif # defined(PROG)
147
148 all: beforebuild .WAIT ${PROG} ${SCRIPTS}
149 beforebuild: objwarn
150 .if ${MK_MAN} != "no"
151 all: _manpages
152 .endif
153
154 .if defined(PROG)
155 CLEANFILES+= ${PROG}
156 .if ${MK_DEBUG_FILES} != "no"
157 CLEANFILES+=    ${PROG_FULL} ${PROGNAME}.debug
158 .endif
159 .endif
160
161 .if defined(OBJS)
162 CLEANFILES+= ${OBJS}
163 .endif
164
165 .include <bsd.libnames.mk>
166
167 .if defined(PROG)
168 _EXTRADEPEND:
169 .if defined(LDFLAGS) && !empty(LDFLAGS:M-nostdlib)
170 .if defined(DPADD) && !empty(DPADD)
171         echo ${PROG_FULL}: ${DPADD} >> ${DEPENDFILE}
172 .endif
173 .else
174         echo ${PROG_FULL}: ${LIBC} ${DPADD} >> ${DEPENDFILE}
175 .if defined(PROG_CXX)
176 .if ${MK_CLANG_IS_CC} != "no" && empty(CXXFLAGS:M-stdlib=libstdc++)
177         echo ${PROG_FULL}: ${LIBCPLUSPLUS} >> ${DEPENDFILE}
178 .else
179         echo ${PROG_FULL}: ${LIBSTDCPLUSPLUS} >> ${DEPENDFILE}
180 .endif
181 .endif
182 .endif
183 .endif
184
185 .if !target(install)
186
187 .if defined(PRECIOUSPROG)
188 .if !defined(NO_FSCHG)
189 INSTALLFLAGS+= -fschg
190 .endif
191 INSTALLFLAGS+= -S
192 .endif
193
194 _INSTALLFLAGS:= ${INSTALLFLAGS}
195 .for ie in ${INSTALLFLAGS_EDIT}
196 _INSTALLFLAGS:= ${_INSTALLFLAGS${ie}}
197 .endfor
198
199 .if !target(realinstall) && !defined(INTERNALPROG)
200 realinstall: _proginstall
201 .ORDER: beforeinstall _proginstall
202 _proginstall:
203 .if defined(PROG)
204         ${INSTALL} ${STRIP} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
205             ${_INSTALLFLAGS} ${PROG} ${DESTDIR}${BINDIR}/${PROGNAME}
206 .if ${MK_DEBUG_FILES} != "no"
207 .if defined(DEBUGMKDIR)
208         ${INSTALL} -T debug -d ${DESTDIR}${DEBUGFILEDIR}
209 .endif
210         ${INSTALL} -T debug -o ${BINOWN} -g ${BINGRP} -m ${DEBUGMODE} \
211             ${PROGNAME}.debug ${DESTDIR}${DEBUGFILEDIR}/${PROGNAME}.debug
212 .endif
213 .endif
214 .endif  # !target(realinstall)
215
216 .if defined(SCRIPTS) && !empty(SCRIPTS)
217 realinstall: _scriptsinstall
218 .ORDER: beforeinstall _scriptsinstall
219
220 SCRIPTSDIR?=    ${BINDIR}
221 SCRIPTSOWN?=    ${BINOWN}
222 SCRIPTSGRP?=    ${BINGRP}
223 SCRIPTSMODE?=   ${BINMODE}
224
225 .for script in ${SCRIPTS}
226 .if defined(SCRIPTSNAME)
227 SCRIPTSNAME_${script:T}?=       ${SCRIPTSNAME}
228 .else
229 SCRIPTSNAME_${script:T}?=       ${script:T:R}
230 .endif
231 SCRIPTSDIR_${script:T}?=        ${SCRIPTSDIR}
232 SCRIPTSOWN_${script:T}?=        ${SCRIPTSOWN}
233 SCRIPTSGRP_${script:T}?=        ${SCRIPTSGRP}
234 SCRIPTSMODE_${script:T}?=       ${SCRIPTSMODE}
235 _scriptsinstall: _SCRIPTSINS_${script:T}
236 _SCRIPTSINS_${script:T}: ${script}
237         ${INSTALL} -o ${SCRIPTSOWN_${.ALLSRC:T}} \
238             -g ${SCRIPTSGRP_${.ALLSRC:T}} -m ${SCRIPTSMODE_${.ALLSRC:T}} \
239             ${.ALLSRC} \
240             ${DESTDIR}${SCRIPTSDIR_${.ALLSRC:T}}/${SCRIPTSNAME_${.ALLSRC:T}}
241 .endfor
242 .endif
243
244 NLSNAME?=       ${PROG}
245 .include <bsd.nls.mk>
246
247 .include <bsd.files.mk>
248 .include <bsd.incs.mk>
249 .include <bsd.links.mk>
250
251 .if ${MK_MAN} != "no"
252 realinstall: _maninstall
253 .ORDER: beforeinstall _maninstall
254 .endif
255
256 .endif  # !target(install)
257
258 .if !target(lint)
259 lint: ${SRCS:M*.c}
260 .if defined(PROG)
261         ${LINT} ${LINTFLAGS} ${CFLAGS:M-[DIU]*} ${.ALLSRC}
262 .endif
263 .endif
264
265 .if ${MK_MAN} != "no"
266 .include <bsd.man.mk>
267 .endif
268
269 .include <bsd.dep.mk>
270
271 .if defined(PROG) && !exists(${.OBJDIR}/${DEPENDFILE})
272 ${OBJS}: ${SRCS:M*.h}
273 .endif
274
275 .include <bsd.obj.mk>
276
277 .include <bsd.sys.mk>
278
279 .if defined(PORTNAME)
280 .include <bsd.pkg.mk>
281 .endif