]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - share/mk/bsd.prog.mk
Bring back part of r249367 by adding DTrace's temporal option, which allows
[FreeBSD/FreeBSD.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 CFLAGS+=${COPTS}
11 .endif
12
13 .if ${MK_ASSERT_DEBUG} == "no"
14 CFLAGS+= -DNDEBUG
15 NO_WERROR=
16 .endif
17
18 .if defined(DEBUG_FLAGS)
19 CFLAGS+=${DEBUG_FLAGS}
20 CXXFLAGS+=${DEBUG_FLAGS}
21
22 .if ${MK_CTF} != "no" && ${DEBUG_FLAGS:M-g} != ""
23 CTFFLAGS+= -g
24 .endif
25 .endif
26
27 .if defined(CRUNCH_CFLAGS)
28 CFLAGS+=${CRUNCH_CFLAGS}
29 .endif
30
31 .if !defined(DEBUG_FLAGS)
32 STRIP?= -s
33 .endif
34
35 .if defined(NO_SHARED) && (${NO_SHARED} != "no" && ${NO_SHARED} != "NO")
36 LDFLAGS+= -static
37 .endif
38
39 .if defined(PROG_CXX)
40 PROG=   ${PROG_CXX}
41 .endif
42
43 .if defined(PROG)
44 PROGNAME?=      ${PROG}
45 .if defined(SRCS)
46
47 OBJS+=  ${SRCS:N*.h:R:S/$/.o/g}
48
49 .if target(beforelinking)
50 beforelinking: ${OBJS}
51 ${PROG}: beforelinking
52 .endif
53 ${PROG}: ${OBJS}
54 .if defined(PROG_CXX)
55         ${CXX} ${CXXFLAGS} ${LDFLAGS} -o ${.TARGET} ${OBJS} ${LDADD}
56 .else
57         ${CC} ${CFLAGS} ${LDFLAGS} -o ${.TARGET} ${OBJS} ${LDADD}
58 .endif
59 .if ${MK_CTF} != "no"
60         ${CTFMERGE} ${CTFFLAGS} -o ${.TARGET} ${OBJS}
61 .endif
62
63 .else   # !defined(SRCS)
64
65 .if !target(${PROG})
66 .if defined(PROG_CXX)
67 SRCS=   ${PROG}.cc
68 .else
69 SRCS=   ${PROG}.c
70 .endif
71
72 # Always make an intermediate object file because:
73 # - it saves time rebuilding when only the library has changed
74 # - the name of the object gets put into the executable symbol table instead of
75 #   the name of a variable temporary object.
76 # - it's useful to keep objects around for crunching.
77 OBJS+=  ${PROG}.o
78
79 .if target(beforelinking)
80 beforelinking: ${OBJS}
81 ${PROG}: beforelinking
82 .endif
83 ${PROG}: ${OBJS}
84 .if defined(PROG_CXX)
85         ${CXX} ${CXXFLAGS} ${LDFLAGS} -o ${.TARGET} ${OBJS} ${LDADD}
86 .else
87         ${CC} ${CFLAGS} ${LDFLAGS} -o ${.TARGET} ${OBJS} ${LDADD}
88 .endif
89 .if ${MK_CTF} != "no"
90         ${CTFMERGE} ${CTFFLAGS} -o ${.TARGET} ${OBJS}
91 .endif
92 .endif
93
94 .endif # !defined(SRCS)
95
96 .if     ${MK_MAN} != "no" && !defined(MAN) && \
97         !defined(MAN1) && !defined(MAN2) && !defined(MAN3) && \
98         !defined(MAN4) && !defined(MAN5) && !defined(MAN6) && \
99         !defined(MAN7) && !defined(MAN8) && !defined(MAN9)
100 MAN=    ${PROG}.1
101 MAN1=   ${MAN}
102 .endif
103 .endif # defined(PROG)
104
105 all: objwarn ${PROG} ${SCRIPTS}
106 .if ${MK_MAN} != "no"
107 all: _manpages
108 .endif
109
110 .if defined(PROG)
111 CLEANFILES+= ${PROG}
112 .endif
113
114 .if defined(OBJS)
115 CLEANFILES+= ${OBJS}
116 .endif
117
118 .include <bsd.libnames.mk>
119
120 .if defined(PROG)
121 _EXTRADEPEND:
122 .if defined(LDFLAGS) && !empty(LDFLAGS:M-nostdlib)
123 .if defined(DPADD) && !empty(DPADD)
124         echo ${PROG}: ${DPADD} >> ${DEPENDFILE}
125 .endif
126 .else
127         echo ${PROG}: ${LIBC} ${DPADD} >> ${DEPENDFILE}
128 .if defined(PROG_CXX)
129 .if !empty(CXXFLAGS:M-stdlib=libc++)
130         echo ${PROG}: ${LIBCPLUSPLUS} >> ${DEPENDFILE}
131 .else
132         echo ${PROG}: ${LIBSTDCPLUSPLUS} >> ${DEPENDFILE}
133 .endif
134 .endif
135 .endif
136 .endif
137
138 .if !target(install)
139
140 .if defined(PRECIOUSPROG)
141 .if !defined(NO_FSCHG)
142 INSTALLFLAGS+= -fschg
143 .endif
144 INSTALLFLAGS+= -S
145 .endif
146
147 _INSTALLFLAGS:= ${INSTALLFLAGS}
148 .for ie in ${INSTALLFLAGS_EDIT}
149 _INSTALLFLAGS:= ${_INSTALLFLAGS${ie}}
150 .endfor
151
152 .if !target(realinstall) && !defined(INTERNALPROG)
153 realinstall: _proginstall
154 .ORDER: beforeinstall _proginstall
155 _proginstall:
156 .if defined(PROG)
157         ${INSTALL} ${STRIP} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
158             ${_INSTALLFLAGS} ${PROG} ${DESTDIR}${BINDIR}/${PROGNAME}
159 .endif
160 .endif  # !target(realinstall)
161
162 .if defined(SCRIPTS) && !empty(SCRIPTS)
163 realinstall: _scriptsinstall
164 .ORDER: beforeinstall _scriptsinstall
165
166 SCRIPTSDIR?=    ${BINDIR}
167 SCRIPTSOWN?=    ${BINOWN}
168 SCRIPTSGRP?=    ${BINGRP}
169 SCRIPTSMODE?=   ${BINMODE}
170
171 .for script in ${SCRIPTS}
172 .if defined(SCRIPTSNAME)
173 SCRIPTSNAME_${script:T}?=       ${SCRIPTSNAME}
174 .else
175 SCRIPTSNAME_${script:T}?=       ${script:T:R}
176 .endif
177 SCRIPTSDIR_${script:T}?=        ${SCRIPTSDIR}
178 SCRIPTSOWN_${script:T}?=        ${SCRIPTSOWN}
179 SCRIPTSGRP_${script:T}?=        ${SCRIPTSGRP}
180 SCRIPTSMODE_${script:T}?=       ${SCRIPTSMODE}
181 _scriptsinstall: _SCRIPTSINS_${script:T}
182 _SCRIPTSINS_${script:T}: ${script}
183         ${INSTALL} -o ${SCRIPTSOWN_${.ALLSRC:T}} \
184             -g ${SCRIPTSGRP_${.ALLSRC:T}} -m ${SCRIPTSMODE_${.ALLSRC:T}} \
185             ${.ALLSRC} \
186             ${DESTDIR}${SCRIPTSDIR_${.ALLSRC:T}}/${SCRIPTSNAME_${.ALLSRC:T}}
187 .endfor
188 .endif
189
190 NLSNAME?=       ${PROG}
191 .include <bsd.nls.mk>
192
193 .include <bsd.files.mk>
194 .include <bsd.incs.mk>
195 .include <bsd.links.mk>
196
197 .if ${MK_MAN} != "no"
198 realinstall: _maninstall
199 .ORDER: beforeinstall _maninstall
200 .endif
201
202 .endif
203
204 .if !target(lint)
205 lint: ${SRCS:M*.c}
206 .if defined(PROG)
207         ${LINT} ${LINTFLAGS} ${CFLAGS:M-[DIU]*} ${.ALLSRC}
208 .endif
209 .endif
210
211 .if ${MK_MAN} != "no"
212 .include <bsd.man.mk>
213 .endif
214
215 .include <bsd.dep.mk>
216
217 .if defined(PROG) && !exists(${.OBJDIR}/${DEPENDFILE})
218 ${OBJS}: ${SRCS:M*.h}
219 .endif
220
221 .include <bsd.obj.mk>
222
223 .include <bsd.sys.mk>
224
225 .if defined(PORTNAME)
226 .include <bsd.pkg.mk>
227 .endif