Annotation of src/share/mk/bsd.lib.mk, Revision 1.211
1.210 thorpej 1: # $NetBSD: bsd.lib.mk,v 1.209 2002/11/09 08:22:04 thorpej Exp $
1.92 mikel 2: # @(#)bsd.lib.mk 8.3 (Berkeley) 4/22/94
1.1 cgd 3:
1.188 tv 4: .include <bsd.init.mk>
1.207 thorpej 5: .include <bsd.shlib.mk>
1.97 mycroft 6:
1.188 tv 7: ##### Basic targets
1.143 erh 8: .PHONY: checkver cleanlib libinstall
9: realinstall: checkver libinstall
1.183 tv 10: clean: cleanlib
1.1 cgd 11:
1.188 tv 12: ##### Build and install rules
1.192 thorpej 13: CPPFLAGS+= ${DESTDIR:D-nostdinc ${CPPFLAG_ISYSTEM} ${DESTDIR}/usr/include}
1.194 tv 14: CXXFLAGS+= ${DESTDIR:D-nostdinc++ ${CPPFLAG_ISYSTEM} ${DESTDIR}/usr/include/g++}
1.190 tv 15:
1.184 tv 16: .if !defined(SHLIB_MAJOR) && exists(${SHLIB_VERSION_FILE})
1.154 simonb 17: SHLIB_MAJOR != . ${SHLIB_VERSION_FILE} ; echo $$major
18: SHLIB_MINOR != . ${SHLIB_VERSION_FILE} ; echo $$minor
1.171 christos 19: SHLIB_TEENY != . ${SHLIB_VERSION_FILE} ; echo $$teeny
1.143 erh 20:
21: # Check for higher installed library versions.
1.145 erh 22: .if !defined(NOCHECKVER) && !defined(NOCHECKVER_${LIB}) && \
1.201 lukem 23: exists(${NETBSDSRCDIR}/lib/checkver)
1.143 erh 24: checkver:
1.144 erh 25: @(cd ${.CURDIR} && \
1.201 lukem 26: sh ${NETBSDSRCDIR}/lib/checkver -v ${SHLIB_VERSION_FILE} \
1.195 lukem 27: -d ${DESTDIR}${_LIBSODIR} ${LIB})
1.173 christos 28: .endif
29: .endif
30:
31: .if !target(checkver)
1.143 erh 32: checkver:
33: .endif
1.173 christos 34:
1.169 thorpej 35: print-shlib-major:
1.185 tv 36: .if defined(SHLIB_MAJOR) && ${MKPIC} != "no"
1.169 thorpej 37: @echo ${SHLIB_MAJOR}
1.173 christos 38: .else
39: @false
40: .endif
1.169 thorpej 41:
42: print-shlib-minor:
1.185 tv 43: .if defined(SHLIB_MINOR) && ${MKPIC} != "no"
1.169 thorpej 44: @echo ${SHLIB_MINOR}
1.173 christos 45: .else
46: @false
47: .endif
1.171 christos 48:
49: print-shlib-teeny:
1.185 tv 50: .if defined(SHLIB_TEENY) && ${MKPIC} != "no"
1.171 christos 51: @echo ${SHLIB_TEENY}
1.143 erh 52: .else
1.169 thorpej 53: @false
1.173 christos 54: .endif
1.169 thorpej 55:
1.173 christos 56: .if defined(SHLIB_MAJOR) && !empty(SHLIB_MAJOR)
57: .if defined(SHLIB_MINOR) && !empty(SHLIB_MINOR)
58: .if defined(SHLIB_TEENY) && !empty(SHLIB_TEENY)
59: SHLIB_FULLVERSION=${SHLIB_MAJOR}.${SHLIB_MINOR}.${SHLIB_TEENY}
60: .else
61: SHLIB_FULLVERSION=${SHLIB_MAJOR}.${SHLIB_MINOR}
62: .endif
63: .else
64: SHLIB_FULLVERSION=${SHLIB_MAJOR}
65: .endif
1.35 pk 66: .endif
1.1 cgd 67:
1.101 mycroft 68: # add additional suffixes not exported.
69: # .po is used for profiling object files.
70: # .so is used for PIC object files.
1.118 lukem 71: .SUFFIXES: .out .a .ln .so .po .o .s .S .c .cc .C .m .F .f .r .y .l .cl .p .h
72: .SUFFIXES: .sh .m4 .m
1.82 mikel 73:
1.86 jonathan 74:
75: # Set PICFLAGS to cc flags for producing position-independent code,
76: # if not already set. Includes -DPIC, if required.
77:
1.164 simonb 78: # Data-driven table using make variables to control how shared libraries
1.86 jonathan 79: # are built for different platforms and object formats.
1.125 jonathan 80: # OBJECT_FMT: currently either "ELF" or "a.out", from <bsd.own.mk>
1.164 simonb 81: # SHLIB_SOVERSION: version number to be compiled into a shared library
82: # via -soname. Usualy ${SHLIB_MAJOR} on ELF.
1.173 christos 83: # NetBSD/pmax used to use ${SHLIB_MAJOR}[.${SHLIB_MINOR}
84: # [.${SHLIB_TEENY}]]
1.164 simonb 85: # SHLIB_SHFLAGS: Flags to tell ${LD} to emit shared library.
1.123 jonathan 86: # with ELF, also set shared-lib version for ld.so.
87: # SHLIB_LDSTARTFILE: support .o file, call C++ file-level constructors
88: # SHLIB_LDENDFILE: support .o file, call C++ file-level destructors
1.179 dmcmahil 89: # FPICFLAGS: flags for ${FC} to compile .[fF] files to .so objects.
1.164 simonb 90: # CPPICFLAGS: flags for ${CPP} to preprocess .[sS] files for ${AS}
1.205 yamt 91: # CPICFLAGS: flags for ${CC} to compile .[cC] files to pic objects.
92: # CSHLIBFLAGS: flags for ${CC} to compile .[cC] files to .so objects.
93: # (usually includes ${CPICFLAGS})
94: # CAPICFLAGS: flags for ${CC} to compiling .[Ss] files
1.107 jonathan 95: # (usually just ${CPPPICFLAGS} ${CPICFLAGS})
1.164 simonb 96: # APICFLAGS: flags for ${AS} to assemble .[sS] to .so objects.
1.86 jonathan 97:
1.148 lukem 98: .if ${MACHINE_ARCH} == "alpha"
1.209 thorpej 99:
1.179 dmcmahil 100: FPICFLAGS ?= -fPIC
1.165 dmcmahil 101: CPICFLAGS ?= -fPIC -DPIC
1.107 jonathan 102: CPPPICFLAGS?= -DPIC
103: CAPICFLAGS?= ${CPPPICFLAGS} ${CPICFLAGS}
104: APICFLAGS ?=
1.209 thorpej 105:
1.151 drochner 106: .elif ${MACHINE_ARCH} == "mipsel" || ${MACHINE_ARCH} == "mipseb"
1.86 jonathan 107:
1.209 thorpej 108: # On MIPS, all libs are compiled with ABIcalls (and are thus PIC),
109: # not just sharedlibs.
1.160 simonb 110: MKPICLIB= no
111:
1.172 matt 112: .elif ${MACHINE_ARCH} == "vax" && ${OBJECT_FMT} == "ELF"
1.209 thorpej 113:
1.172 matt 114: # On the VAX, all object are PIC by default, not just sharedlibs.
115: MKPICLIB= no
1.150 christos 116:
1.175 mrg 117: .elif (${MACHINE_ARCH} == "sparc" || ${MACHINE_ARCH} == "sparc64") && \
118: ${OBJECT_FMT} == "ELF"
1.209 thorpej 119:
1.202 eeh 120: # If you use -fPIC you need to define BIGPIC to turn on 32-bit
121: # relocations in asm code
1.179 dmcmahil 122: FPICFLAGS ?= -fPIC
1.165 dmcmahil 123: CPICFLAGS ?= -fPIC -DPIC
1.202 eeh 124: CPPPICFLAGS?= -DPIC -DBIGPIC
1.150 christos 125: CAPICFLAGS?= ${CPPPICFLAGS} ${CPICFLAGS}
1.203 eeh 126: APICFLAGS ?= -KPIC
1.204 fredette 127:
128: .elif ${MACHINE_ARCH} == "hppa"
129:
130: FPICFLAGS ?= -fPIC
131: CPICFLAGS?= -fPIC -DPIC
132: CPPPICFLAGS?= -DPIC
133: CAPICFLAGS?= ${CPPPICFLAGS} ${CPICFLAGS}
134: APICFLAGS?= -k
135: # XXX libraries often need the millicode functions in libgcc.a,
136: # so we have to work around the -nostdlib:
137: LDADD+= `$(CC) -print-libgcc-file-name`
1.86 jonathan 138:
139: .else
140:
1.187 nathanw 141: # Platform-independent flags for NetBSD a.out shared libraries
1.171 christos 142: SHLIB_SOVERSION=${SHLIB_FULLVERSION}
1.125 jonathan 143: SHLIB_SHFLAGS=
1.179 dmcmahil 144: FPICFLAGS ?= -fPIC
1.165 dmcmahil 145: CPICFLAGS?= -fPIC -DPIC
1.107 jonathan 146: CPPPICFLAGS?= -DPIC
147: CAPICFLAGS?= ${CPPPICFLAGS} ${CPICFLAGS}
148: APICFLAGS?= -k
1.86 jonathan 149:
150: .endif
151:
1.160 simonb 152: MKPICLIB?= yes
153:
1.205 yamt 154: .if ${MKPICLIB} != "no"
155: CSHLIBFLAGS+= ${CPICFLAGS}
156: .endif
157:
158: .if defined(CSHLIBFLAGS) && !empty(CSHLIBFLAGS)
159: MKSHLIBOBJS= yes
160: .else
161: MKSHLIBOBJS= no
162: .endif
163:
1.123 jonathan 164: # Platform-independent linker flags for ELF shared libraries
1.148 lukem 165: .if ${OBJECT_FMT} == "ELF"
1.182 mrg 166: SHLIB_SOVERSION= ${SHLIB_MAJOR}
167: SHLIB_SHFLAGS= -soname lib${LIB}.so.${SHLIB_SOVERSION}
168: SHLIB_LDSTARTFILE?= ${DESTDIR}/usr/lib/crtbeginS.o
169: SHLIB_LDENDFILE?= ${DESTDIR}/usr/lib/crtendS.o
1.123 jonathan 170: .endif
1.86 jonathan 171:
1.82 mikel 172: CFLAGS+= ${COPTS}
1.179 dmcmahil 173: FFLAGS+= ${FOPTS}
1.1 cgd 174:
175: .c.o:
1.153 christos 176: .if defined(COPTS) && !empty(COPTS:M*-g*)
177: ${COMPILE.c} ${.IMPSRC}
178: .else
1.80 christos 179: @echo ${COMPILE.c:Q} ${.IMPSRC}
1.122 cgd 180: @${COMPILE.c} ${.IMPSRC} -o ${.TARGET}.o
1.62 christos 181: @${LD} -x -r ${.TARGET}.o -o ${.TARGET}
182: @rm -f ${.TARGET}.o
1.153 christos 183: .endif
1.1 cgd 184:
185: .c.po:
1.153 christos 186: .if defined(COPTS) && !empty(COPTS:M*-g*)
187: ${COMPILE.c} -pg ${.IMPSRC} -o ${.TARGET}
188: .else
1.80 christos 189: @echo ${COMPILE.c:Q} -pg ${.IMPSRC} -o ${.TARGET}
1.68 cgd 190: @${COMPILE.c} -pg ${.IMPSRC} -o ${.TARGET}.o
1.62 christos 191: @${LD} -X -r ${.TARGET}.o -o ${.TARGET}
192: @rm -f ${.TARGET}.o
1.153 christos 193: .endif
1.17 mycroft 194:
1.27 pk 195: .c.so:
1.153 christos 196: .if defined(COPTS) && !empty(COPTS:M*-g*)
1.205 yamt 197: ${COMPILE.c} ${CSHLIBFLAGS} ${.IMPSRC} -o ${.TARGET}
1.153 christos 198: .else
1.205 yamt 199: @echo ${COMPILE.c:Q} ${CSHLIBFLAGS} ${.IMPSRC} -o ${.TARGET}
200: @${COMPILE.c} ${CSHLIBFLAGS} ${.IMPSRC} -o ${.TARGET}.o
1.62 christos 201: @${LD} -x -r ${.TARGET}.o -o ${.TARGET}
202: @rm -f ${.TARGET}.o
1.153 christos 203: .endif
1.27 pk 204:
1.58 cgd 205: .c.ln:
1.121 thorpej 206: ${LINT} ${LINTFLAGS} ${CPPFLAGS:M-[IDU]*} -i ${.IMPSRC}
1.58 cgd 207:
1.18 mycroft 208: .cc.o .C.o:
1.153 christos 209: .if defined(COPTS) && !empty(COPTS:M*-g*)
210: ${COMPILE.cc} ${.IMPSRC}
211: .else
1.80 christos 212: @echo ${COMPILE.cc:Q} ${.IMPSRC}
1.62 christos 213: @${COMPILE.cc} ${.IMPSRC} -o ${.TARGET}.o
1.63 jtc 214: @${LD} -x -r ${.TARGET}.o -o ${.TARGET}
1.62 christos 215: @rm -f ${.TARGET}.o
1.153 christos 216: .endif
1.17 mycroft 217:
1.18 mycroft 218: .cc.po .C.po:
1.153 christos 219: .if defined(COPTS) && !empty(COPTS:M*-g*)
220: ${COMPILE.cc} -pg ${.IMPSRC} -o ${.TARGET}
221: .else
1.80 christos 222: @echo ${COMPILE.cc:Q} -pg ${.IMPSRC} -o ${.TARGET}
1.68 cgd 223: @${COMPILE.cc} -pg ${.IMPSRC} -o ${.TARGET}.o
1.62 christos 224: @${LD} -X -r ${.TARGET}.o -o ${.TARGET}
225: @rm -f ${.TARGET}.o
1.153 christos 226: .endif
1.28 cgd 227:
228: .cc.so .C.so:
1.153 christos 229: .if defined(COPTS) && !empty(COPTS:M*-g*)
1.205 yamt 230: ${COMPILE.cc} ${CSHLIBFLAGS} ${.IMPSRC} -o ${.TARGET}
1.153 christos 231: .else
1.86 jonathan 232: @echo ${COMPILE.cc:Q} ${CPICFLAGS} ${.IMPSRC} -o ${.TARGET}
1.205 yamt 233: @${COMPILE.cc} ${CSHLIBFLAGS} ${.IMPSRC} -o ${.TARGET}.o
1.62 christos 234: @${LD} -x -r ${.TARGET}.o -o ${.TARGET}
235: @rm -f ${.TARGET}.o
1.153 christos 236: .endif
1.118 lukem 237:
1.179 dmcmahil 238: .f.o:
239: .if defined(FOPTS) && !empty(FOPTS:M*-g*)
240: ${COMPILE.f} ${.IMPSRC}
241: .else
242: @echo ${COMPILE.f:Q} ${.IMPSRC}
243: @${COMPILE.f} ${.IMPSRC} -o ${.TARGET}.o
244: @${LD} -x -r ${.TARGET}.o -o ${.TARGET}
245: @rm -f ${.TARGET}.o
246: .endif
247:
248: .f.po:
249: .if defined(FOPTS) && !empty(FOPTS:M*-g*)
250: ${COMPILE.f} -pg ${.IMPSRC} -o ${.TARGET}
251: .else
252: @echo ${COMPILE.f:Q} -pg ${.IMPSRC} -o ${.TARGET}
253: @${COMPILE.f} -pg ${.IMPSRC} -o ${.TARGET}.o
254: @${LD} -X -r ${.TARGET}.o -o ${.TARGET}
255: @rm -f ${.TARGET}.o
256: .endif
257:
258: .f.so:
259: .if defined(FOPTS) && !empty(FOPTS:M*-g*)
260: ${COMPILE.f} ${FPICFLAGS} ${.IMPSRC} -o ${.TARGET}
261: .else
262: @echo ${COMPILE.f:Q} ${FPICFLAGS} ${.IMPSRC} -o ${.TARGET}
263: @${COMPILE.f} ${FPICFLAGS} ${.IMPSRC} -o ${.TARGET}.o
264: @${LD} -x -r ${.TARGET}.o -o ${.TARGET}
265: @rm -f ${.TARGET}.o
266: .endif
267:
268: .f.ln:
269: ${ECHO} Skipping lint for Fortran libraries.
270:
1.118 lukem 271: .m.o:
1.153 christos 272: .if defined(OBJCFLAGS) && !empty(OBJCFLAGS:M*-g*)
273: ${COMPILE.m} ${.IMPSRC}
274: .else
1.118 lukem 275: @echo ${COMPILE.m:Q} ${.IMPSRC}
1.122 cgd 276: @${COMPILE.m} ${.IMPSRC} -o ${.TARGET}.o
1.118 lukem 277: @${LD} -x -r ${.TARGET}.o -o ${.TARGET}
278: @rm -f ${.TARGET}.o
1.153 christos 279: .endif
1.118 lukem 280:
281: .m.po:
1.153 christos 282: .if defined(OBJCFLAGS) && !empty(OBJCFLAGS:M*-g*)
283: ${COMPILE.m} -pg ${.IMPSRC} -o ${.TARGET}
284: .else
1.118 lukem 285: @echo ${COMPILE.m:Q} -pg ${.IMPSRC} -o ${.TARGET}
286: @${COMPILE.m} -pg ${.IMPSRC} -o ${.TARGET}.o
287: @${LD} -X -r ${.TARGET}.o -o ${.TARGET}
288: @rm -f ${.TARGET}.o
1.153 christos 289: .endif
1.118 lukem 290:
291: .m.so:
1.153 christos 292: .if defined(OBJCFLAGS) && !empty(OBJCFLAGS:M*-g*)
1.205 yamt 293: ${COMPILE.m} ${CSHLIBFLAGS} ${.IMPSRC} -o ${.TARGET}
1.153 christos 294: .else
1.118 lukem 295: @echo ${COMPILE.m:Q} ${CPICFLAGS} ${.IMPSRC} -o ${.TARGET}
1.205 yamt 296: @${COMPILE.m} ${CSHLIBFLAGS} ${.IMPSRC} -o ${.TARGET}.o
1.118 lukem 297: @${LD} -x -r ${.TARGET}.o -o ${.TARGET}
298: @rm -f ${.TARGET}.o
1.153 christos 299: .endif
1.1 cgd 300:
1.40 cgd 301: .S.o .s.o:
1.211 ! thorpej 302: @echo ${COMPILE.S:Q} ${CFLAGS:M-[ID]*} ${AINC} ${.IMPSRC}
! 303: @${COMPILE.S} ${CFLAGS:M-[ID]*} ${AINC} ${.IMPSRC} -o ${.TARGET}.o
1.62 christos 304: @${LD} -x -r ${.TARGET}.o -o ${.TARGET}
305: @rm -f ${.TARGET}.o
1.1 cgd 306:
1.40 cgd 307: .S.po .s.po:
1.211 ! thorpej 308: @echo ${COMPILE.S:Q} -DGPROF -DPROF ${CFLAGS:M-[ID]*} ${AINC} ${.IMPSRC} -o ${.TARGET}
! 309: @${COMPILE.S} -DGPROF -DPROF ${CFLAGS:M-[ID]*} ${AINC} ${.IMPSRC} -o ${.TARGET}.o
1.62 christos 310: @${LD} -X -r ${.TARGET}.o -o ${.TARGET}
311: @rm -f ${.TARGET}.o
1.1 cgd 312:
1.40 cgd 313: .S.so .s.so:
1.211 ! thorpej 314: @echo ${COMPILE.S:Q} ${CAPICFLAGS} ${CFLAGS:M-[ID]*} ${AINC} ${.IMPSRC} -o ${.TARGET}
! 315: @${COMPILE.S} ${CAPICFLAGS} ${CFLAGS:M-[ID]*} ${AINC} ${.IMPSRC} -o ${.TARGET}.o
1.62 christos 316: @${LD} -x -r ${.TARGET}.o -o ${.TARGET}
317: @rm -f ${.TARGET}.o
1.27 pk 318:
1.148 lukem 319: .if ${MKPIC} == "no" || (defined(LDSTATIC) && ${LDSTATIC} != "") \
320: || ${MKLINKLIB} != "no"
1.130 tv 321: _LIBS=lib${LIB}.a
322: .else
323: _LIBS=
324: .endif
1.58 cgd 325:
1.167 matt 326: OBJS+=${SRCS:N*.h:N*.sh:R:S/$/.o/g}
1.158 christos 327:
1.149 lukem 328: .if ${MKPROFILE} != "no"
1.130 tv 329: _LIBS+=lib${LIB}_p.a
1.167 matt 330: POBJS+=${OBJS:.o=.po}
1.1 cgd 331: .endif
332:
1.148 lukem 333: .if ${MKPIC} != "no"
1.160 simonb 334: .if ${MKPICLIB} == "no"
1.205 yamt 335: .if ${MKSHLIBOBJS} != "no"
336: # make _pic.a, which isn't really pic,
337: # since it's needed for making shared lib.
338: # but don't install it.
339: SOLIB=lib${LIB}_pic.a
340: SOBJS+=${OBJS:.o=.so}
341: .else
1.160 simonb 342: SOLIB=lib${LIB}.a
1.205 yamt 343: .endif
1.160 simonb 344: .else
345: SOLIB=lib${LIB}_pic.a
346: _LIBS+=${SOLIB}
1.167 matt 347: SOBJS+=${OBJS:.o=.so}
1.160 simonb 348: .endif
1.171 christos 349: .if defined(SHLIB_FULLVERSION)
350: _LIBS+=lib${LIB}.so.${SHLIB_FULLVERSION}
1.27 pk 351: .endif
1.35 pk 352: .endif
1.27 pk 353:
1.179 dmcmahil 354: LOBJS+=${LSRCS:.c=.ln} ${SRCS:M*.c:.c=.ln}
355: .if ${MKLINT} != "no" && ${MKLINKLIB} != "no" && !empty(LOBJS)
1.58 cgd 356: _LIBS+=llib-l${LIB}.ln
1.27 pk 357: .endif
358:
1.167 matt 359: .if ${MKPIC} == "no" || (defined(LDSTATIC) && ${LDSTATIC} != "") \
360: || ${MKLINKLIB} != "no"
1.179 dmcmahil 361: ALLOBJS=${OBJS} ${POBJS} ${SOBJS}
1.167 matt 362: .else
1.179 dmcmahil 363: ALLOBJS=${POBJS} ${SOBJS}
364: .endif
365: .if ${MKLINT} != "no" && ${MKLINKLIB} != "no" && !empty(LOBJS)
366: ALLOBJS+=${LOBJS}
1.167 matt 367: .endif
1.186 tv 368:
1.191 tv 369: .NOPATH: ${ALLOBJS} ${_LIBS} ${SRCS:M*.[ly]:C/\..$/.c/} ${YHEADER:D${SRCS:M*.y:.y=.h}}
1.158 christos 370:
1.162 mycroft 371: realall: ${SRCS} ${ALLOBJS:O} ${_LIBS}
1.1 cgd 372:
1.90 christos 373: __archivebuild: .USE
1.89 christos 374: @rm -f ${.TARGET}
1.138 tv 375: @${AR} cq ${.TARGET} `NM=${NM} ${LORDER} ${.ALLSRC:M*o} | ${TSORT}`
1.89 christos 376: ${RANLIB} ${.TARGET}
377:
378: __archiveinstall: .USE
1.198 lukem 379: ${INSTALL_FILE} -o ${LIBOWN} -g ${LIBGRP} -m ${LIBMODE} \
1.208 perry 380: ${UPDATE:D:U-a "${RANLIB} -t"} ${SYSPKGTAG} ${.ALLSRC} ${.TARGET}
1.89 christos 381:
1.197 mycroft 382: __archivesymlinkpic: .USE
1.208 perry 383: ${INSTALL_SYMLINK} ${SYSPKGTAG} ${.ALLSRC} ${.TARGET}
1.197 mycroft 384:
1.191 tv 385: DPSRCS+= ${SRCS:M*.[ly]:C/\..$/.c/}
1.186 tv 386: CLEANFILES+= ${DPSRCS} ${YHEADER:D${SRCS:M*.y:.y=.h}}
1.103 mycroft 387:
1.89 christos 388: lib${LIB}.a:: ${OBJS} __archivebuild
1.1 cgd 389: @echo building standard ${LIB} library
390:
1.89 christos 391: lib${LIB}_p.a:: ${POBJS} __archivebuild
1.1 cgd 392: @echo building profiled ${LIB} library
393:
1.89 christos 394: lib${LIB}_pic.a:: ${SOBJS} __archivebuild
1.27 pk 395: @echo building shared object ${LIB} library
396:
1.171 christos 397: lib${LIB}.so.${SHLIB_FULLVERSION}: ${SOLIB} ${DPADD} \
1.88 cgd 398: ${SHLIB_LDSTARTFILE} ${SHLIB_LDENDFILE}
1.171 christos 399: @echo building shared ${LIB} library \(version ${SHLIB_FULLVERSION}\)
400: @rm -f lib${LIB}.so.${SHLIB_FULLVERSION}
1.152 fair 401: .if defined(DESTDIR)
1.155 wrstuden 402: $(LD) -nostdlib -x -shared ${SHLIB_SHFLAGS} -o ${.TARGET} \
1.152 fair 403: ${SHLIB_LDSTARTFILE} \
1.160 simonb 404: --whole-archive ${SOLIB} \
1.170 erh 405: --no-whole-archive ${LDADD} \
1.195 lukem 406: -L${DESTDIR}${_LIBSODIR} -L${DESTDIR}${LIBDIR} \
407: -R${_LIBSODIR} -R${LIBDIR} \
1.152 fair 408: ${SHLIB_LDENDFILE}
409: .else
1.126 jonathan 410: $(LD) -x -shared ${SHLIB_SHFLAGS} -o ${.TARGET} \
1.123 jonathan 411: ${SHLIB_LDSTARTFILE} \
1.160 simonb 412: --whole-archive ${SOLIB} --no-whole-archive ${LDADD} \
1.115 cjs 413: ${SHLIB_LDENDFILE}
1.152 fair 414: .endif
1.148 lukem 415: .if ${OBJECT_FMT} == "ELF"
1.196 lukem 416: # We don't use INSTALL_SYMLINK here because this is just
417: # happening inside the build directory/objdir. XXX Why does
418: # this spend so much effort on libraries that aren't live??? XXX
1.177 mycroft 419: ln -sf lib${LIB}.so.${SHLIB_FULLVERSION} lib${LIB}.so.${SHLIB_MAJOR}.tmp
420: mv -f lib${LIB}.so.${SHLIB_MAJOR}.tmp lib${LIB}.so.${SHLIB_MAJOR}
421: ln -sf lib${LIB}.so.${SHLIB_FULLVERSION} lib${LIB}.so.tmp
422: mv -f lib${LIB}.so.tmp lib${LIB}.so
1.133 tv 423: .endif
1.35 pk 424:
1.179 dmcmahil 425: .if !empty(LOBJS)
1.103 mycroft 426: LLIBS?= -lc
1.58 cgd 427: llib-l${LIB}.ln: ${LOBJS}
428: @echo building llib-l${LIB}.ln
429: @rm -f llib-l${LIB}.ln
1.206 thorpej 430: .if defined(DESTDIR)
431: @${LINT} -C${LIB} ${.ALLSRC} -L${DESTDIR}/usr/libdata ${LLIBS}
432: .else
1.141 wrstuden 433: @${LINT} -C${LIB} ${.ALLSRC} ${LLIBS}
1.206 thorpej 434: .endif
1.179 dmcmahil 435: .endif
1.1 cgd 436:
1.81 cgd 437: cleanlib:
1.48 mycroft 438: rm -f a.out [Ee]rrs mklog core *.core ${CLEANFILES}
1.59 cgd 439: rm -f lib${LIB}.a ${OBJS}
440: rm -f lib${LIB}_p.a ${POBJS}
1.133 tv 441: rm -f lib${LIB}_pic.a lib${LIB}.so.* lib${LIB}.so ${SOBJS}
1.59 cgd 442: rm -f llib-l${LIB}.ln ${LOBJS}
1.1 cgd 443:
1.26 mycroft 444: .if defined(SRCS)
1.64 christos 445: afterdepend: .depend
1.1 cgd 446: @(TMP=/tmp/_depend$$$$; \
1.79 cgd 447: sed -e 's/^\([^\.]*\).o[ ]*:/\1.o \1.po \1.so \1.ln:/' \
1.58 cgd 448: < .depend > $$TMP; \
1.1 cgd 449: mv $$TMP .depend)
1.26 mycroft 450: .endif
1.1 cgd 451:
1.97 mycroft 452: .if !target(libinstall)
1.148 lukem 453: # Make sure it gets defined, in case MKPIC==no && MKLINKLIB==no
1.139 tv 454: libinstall::
455:
1.148 lukem 456: .if ${MKLINKLIB} != "no"
1.89 christos 457: libinstall:: ${DESTDIR}${LIBDIR}/lib${LIB}.a
1.168 mycroft 458: .PRECIOUS: ${DESTDIR}${LIBDIR}/lib${LIB}.a
1.197 mycroft 459:
1.89 christos 460: .if !defined(UPDATE)
1.197 mycroft 461: .if !defined(BUILD) && !make(all) && !make(lib${LIB}.a)
462: ${DESTDIR}${LIBDIR}/lib${LIB}.a! .MADE
1.89 christos 463: .endif
1.197 mycroft 464: ${DESTDIR}${LIBDIR}/lib${LIB}.a! lib${LIB}.a __archiveinstall
465: .else
1.157 fredb 466: .if !defined(BUILD) && !make(all) && !make(lib${LIB}.a)
1.89 christos 467: ${DESTDIR}${LIBDIR}/lib${LIB}.a: .MADE
468: .endif
469: ${DESTDIR}${LIBDIR}/lib${LIB}.a: lib${LIB}.a __archiveinstall
1.130 tv 470: .endif
1.197 mycroft 471: .endif
1.89 christos 472:
1.149 lukem 473: .if ${MKPROFILE} != "no"
1.89 christos 474: libinstall:: ${DESTDIR}${LIBDIR}/lib${LIB}_p.a
1.168 mycroft 475: .PRECIOUS: ${DESTDIR}${LIBDIR}/lib${LIB}_p.a
1.197 mycroft 476:
1.89 christos 477: .if !defined(UPDATE)
1.197 mycroft 478: .if !defined(BUILD) && !make(all) && !make(lib${LIB}_p.a)
479: ${DESTDIR}${LIBDIR}/lib${LIB}_p.a! .MADE
1.32 pk 480: .endif
1.197 mycroft 481: ${DESTDIR}${LIBDIR}/lib${LIB}_p.a! lib${LIB}_p.a __archiveinstall
482: .else
1.157 fredb 483: .if !defined(BUILD) && !make(all) && !make(lib${LIB}_p.a)
1.89 christos 484: ${DESTDIR}${LIBDIR}/lib${LIB}_p.a: .MADE
485: .endif
486: ${DESTDIR}${LIBDIR}/lib${LIB}_p.a: lib${LIB}_p.a __archiveinstall
487: .endif
1.197 mycroft 488: .endif
1.89 christos 489:
1.149 lukem 490: .if ${MKPIC} != "no" && ${MKPICINSTALL} != "no"
1.168 mycroft 491: libinstall:: ${DESTDIR}${LIBDIR}/lib${LIB}_pic.a
1.160 simonb 492: .PRECIOUS: ${DESTDIR}${LIBDIR}/lib${LIB}_pic.a
1.197 mycroft 493:
1.89 christos 494: .if !defined(UPDATE)
1.197 mycroft 495: .if !defined(BUILD) && !make(all) && !make(lib${LIB}_pic.a)
496: ${DESTDIR}${LIBDIR}/lib${LIB}_pic.a! .MADE
1.89 christos 497: .endif
1.197 mycroft 498: .if ${MKPICLIB} == "no"
499: ${DESTDIR}${LIBDIR}/lib${LIB}_pic.a! lib${LIB}.a __archivesymlinkpic
500: .else
501: ${DESTDIR}${LIBDIR}/lib${LIB}_pic.a! lib${LIB}_pic.a __archiveinstall
502: .endif
503: .else
1.157 fredb 504: .if !defined(BUILD) && !make(all) && !make(lib${LIB}_pic.a)
1.89 christos 505: ${DESTDIR}${LIBDIR}/lib${LIB}_pic.a: .MADE
1.33 pk 506: .endif
1.160 simonb 507: .if ${MKPICLIB} == "no"
1.197 mycroft 508: ${DESTDIR}${LIBDIR}/lib${LIB}_pic.a: lib${LIB}.a __archivesymlinkpic
1.160 simonb 509: .else
1.89 christos 510: ${DESTDIR}${LIBDIR}/lib${LIB}_pic.a: lib${LIB}_pic.a __archiveinstall
1.160 simonb 511: .endif
1.89 christos 512: .endif
1.197 mycroft 513: .endif
1.89 christos 514:
1.171 christos 515: .if ${MKPIC} != "no" && defined(SHLIB_FULLVERSION)
1.195 lukem 516: libinstall:: ${DESTDIR}${_LIBSODIR}/lib${LIB}.so.${SHLIB_FULLVERSION}
517: .PRECIOUS: ${DESTDIR}${_LIBSODIR}/lib${LIB}.so.${SHLIB_FULLVERSION}
1.197 mycroft 518:
1.89 christos 519: .if !defined(UPDATE)
1.197 mycroft 520: .if !defined(BUILD) && !make(all) && !make(lib${LIB}.so.${SHLIB_FULLVERSION})
521: ${DESTDIR}${_LIBSODIR}/lib${LIB}.so.${SHLIB_FULLVERSION}! .MADE
1.89 christos 522: .endif
1.197 mycroft 523: ${DESTDIR}${_LIBSODIR}/lib${LIB}.so.${SHLIB_FULLVERSION}! lib${LIB}.so.${SHLIB_FULLVERSION}
524: .else
1.171 christos 525: .if !defined(BUILD) && !make(all) && !make(lib${LIB}.so.${SHLIB_FULLVERSION})
1.195 lukem 526: ${DESTDIR}${_LIBSODIR}/lib${LIB}.so.${SHLIB_FULLVERSION}: .MADE
1.89 christos 527: .endif
1.195 lukem 528: ${DESTDIR}${_LIBSODIR}/lib${LIB}.so.${SHLIB_FULLVERSION}: lib${LIB}.so.${SHLIB_FULLVERSION}
1.197 mycroft 529: .endif
1.188 tv 530: ${INSTALL_FILE} -o ${LIBOWN} -g ${LIBGRP} -m ${LIBMODE} \
1.208 perry 531: ${SYSPKGTAG} ${.ALLSRC} ${.TARGET}
1.195 lukem 532: .if ${_LIBSODIR} != ${LIBDIR}
1.208 perry 533: ${INSTALL_SYMLINK} ${SYSPKGTAG} \
534: ${_LIBSODIR}/lib${LIB}.so.${SHLIB_FULLVERSION} \
535: ${DESTDIR}${LIBDIR}/lib${LIB}.so.${SHLIB_FULLVERSION}
1.195 lukem 536: .endif
1.148 lukem 537: .if ${OBJECT_FMT} == "a.out" && !defined(DESTDIR)
1.195 lukem 538: /sbin/ldconfig -m ${_LIBSODIR} ${LIBDIR}
1.146 thorpej 539: .endif
1.148 lukem 540: .if ${OBJECT_FMT} == "ELF"
1.208 perry 541: ${INSTALL_SYMLINK} ${SYSPKGTAG} \
542: lib${LIB}.so.${SHLIB_FULLVERSION} \
543: ${DESTDIR}${_LIBSODIR}/lib${LIB}.so.${SHLIB_MAJOR}
1.195 lukem 544: .if ${_LIBSODIR} != ${LIBDIR}
1.208 perry 545: ${INSTALL_SYMLINK} ${SYSPKGTAG} \
546: ${_LIBSODIR}/lib${LIB}.so.${SHLIB_FULLVERSION} \
547: ${DESTDIR}${LIBDIR}/lib${LIB}.so.${SHLIB_MAJOR}
1.195 lukem 548: .endif
1.148 lukem 549: .if ${MKLINKLIB} != "no"
1.208 perry 550: ${INSTALL_SYMLINK} ${SYSPKGTAG} \
551: lib${LIB}.so.${SHLIB_FULLVERSION} \
552: ${DESTDIR}${_LIBSODIR}/lib${LIB}.so
1.195 lukem 553: .if ${_LIBSODIR} != ${LIBDIR}
1.208 perry 554: ${INSTALL_SYMLINK} ${SYSPKGTAG} \
555: ${_LIBSODIR}/lib${LIB}.so.${SHLIB_FULLVERSION} \
556: ${DESTDIR}${LIBDIR}/lib${LIB}.so
1.195 lukem 557: .endif
1.83 cgd 558: .endif
1.12 cgd 559: .endif
1.139 tv 560: .endif
1.89 christos 561:
1.179 dmcmahil 562: .if ${MKLINT} != "no" && ${MKLINKLIB} != "no" && !empty(LOBJS)
1.89 christos 563: libinstall:: ${DESTDIR}${LINTLIBDIR}/llib-l${LIB}.ln
1.168 mycroft 564: .PRECIOUS: ${DESTDIR}${LINTLIBDIR}/llib-l${LIB}.ln
1.197 mycroft 565:
1.89 christos 566: .if !defined(UPDATE)
1.197 mycroft 567: .if !defined(BUILD) && !make(all) && !make(llib-l${LIB}.ln)
568: ${DESTDIR}${LINTLIBDIR}/llib-l${LIB}.ln! .MADE
1.89 christos 569: .endif
1.197 mycroft 570: ${DESTDIR}${LINTLIBDIR}/llib-l${LIB}.ln! llib-l${LIB}.ln
571: .else
1.157 fredb 572: .if !defined(BUILD) && !make(all) && !make(llib-l${LIB}.ln)
1.89 christos 573: ${DESTDIR}${LINTLIBDIR}/llib-l${LIB}.ln: .MADE
574: .endif
1.95 mycroft 575: ${DESTDIR}${LINTLIBDIR}/llib-l${LIB}.ln: llib-l${LIB}.ln
1.197 mycroft 576: .endif
1.188 tv 577: ${INSTALL_FILE} -o ${LIBOWN} -g ${LIBGRP} -m ${LIBMODE} \
1.208 perry 578: ${SYSPKGTAG} ${.ALLSRC} ${DESTDIR}${LINTLIBDIR}
1.58 cgd 579: .endif
1.1 cgd 580: .endif
581:
1.188 tv 582: ##### Pull in related .mk logic
1.1 cgd 583: .include <bsd.man.mk>
1.57 jtc 584: .include <bsd.nls.mk>
1.91 christos 585: .include <bsd.files.mk>
1.89 christos 586: .include <bsd.inc.mk>
1.109 cjs 587: .include <bsd.links.mk>
1.24 mycroft 588: .include <bsd.dep.mk>
1.66 christos 589: .include <bsd.sys.mk>
1.117 mycroft 590:
1.188 tv 591: ${TARGETS}: # ensure existence
CVSweb <webmaster@jp.NetBSD.org>