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