Annotation of src/share/mk/bsd.lib.mk, Revision 1.214
1.214 ! thorpej 1: # $NetBSD: bsd.lib.mk,v 1.213 2003/03/30 00:35:07 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.175 mrg 106: .elif (${MACHINE_ARCH} == "sparc" || ${MACHINE_ARCH} == "sparc64") && \
107: ${OBJECT_FMT} == "ELF"
1.209 thorpej 108:
1.202 eeh 109: # If you use -fPIC you need to define BIGPIC to turn on 32-bit
110: # relocations in asm code
1.179 dmcmahil 111: FPICFLAGS ?= -fPIC
1.165 dmcmahil 112: CPICFLAGS ?= -fPIC -DPIC
1.202 eeh 113: CPPPICFLAGS?= -DPIC -DBIGPIC
1.150 christos 114: CAPICFLAGS?= ${CPPPICFLAGS} ${CPICFLAGS}
1.203 eeh 115: APICFLAGS ?= -KPIC
1.204 fredette 116:
117: .elif ${MACHINE_ARCH} == "hppa"
118:
119: FPICFLAGS ?= -fPIC
120: CPICFLAGS?= -fPIC -DPIC
121: CPPPICFLAGS?= -DPIC
122: CAPICFLAGS?= ${CPPPICFLAGS} ${CPICFLAGS}
123: APICFLAGS?= -k
124: # XXX libraries often need the millicode functions in libgcc.a,
125: # so we have to work around the -nostdlib:
126: LDADD+= `$(CC) -print-libgcc-file-name`
1.86 jonathan 127:
128: .else
129:
1.187 nathanw 130: # Platform-independent flags for NetBSD a.out shared libraries
1.171 christos 131: SHLIB_SOVERSION=${SHLIB_FULLVERSION}
1.125 jonathan 132: SHLIB_SHFLAGS=
1.179 dmcmahil 133: FPICFLAGS ?= -fPIC
1.165 dmcmahil 134: CPICFLAGS?= -fPIC -DPIC
1.107 jonathan 135: CPPPICFLAGS?= -DPIC
136: CAPICFLAGS?= ${CPPPICFLAGS} ${CPICFLAGS}
137: APICFLAGS?= -k
1.86 jonathan 138:
139: .endif
1.160 simonb 140:
1.205 yamt 141: .if ${MKPICLIB} != "no"
142: CSHLIBFLAGS+= ${CPICFLAGS}
143: .endif
144:
145: .if defined(CSHLIBFLAGS) && !empty(CSHLIBFLAGS)
146: MKSHLIBOBJS= yes
147: .else
148: MKSHLIBOBJS= no
149: .endif
150:
1.123 jonathan 151: # Platform-independent linker flags for ELF shared libraries
1.148 lukem 152: .if ${OBJECT_FMT} == "ELF"
1.182 mrg 153: SHLIB_SOVERSION= ${SHLIB_MAJOR}
154: SHLIB_SHFLAGS= -soname lib${LIB}.so.${SHLIB_SOVERSION}
1.212 thorpej 155: SHLIB_LDSTARTFILE?= ${DESTDIR}/usr/lib/crti.o ${DESTDIR}/usr/lib/crtbeginS.o
1.213 thorpej 156: # Some platforms require additional endfile support.
157: .if ${MACHINE_ARCH} == "powerpc" && defined(HAVE_GCC3)
158: SHLIB_LDENDFILE?= ${DESTDIR}/usr/lib/crtsavres.o \
159: ${DESTDIR}/usr/lib/crtendS.o ${DESTDIR}/usr/lib/crtn.o
160: .else
1.212 thorpej 161: SHLIB_LDENDFILE?= ${DESTDIR}/usr/lib/crtendS.o ${DESTDIR}/usr/lib/crtn.o
1.213 thorpej 162: .endif
1.123 jonathan 163: .endif
1.86 jonathan 164:
1.82 mikel 165: CFLAGS+= ${COPTS}
1.179 dmcmahil 166: FFLAGS+= ${FOPTS}
1.1 cgd 167:
168: .c.o:
1.153 christos 169: .if defined(COPTS) && !empty(COPTS:M*-g*)
170: ${COMPILE.c} ${.IMPSRC}
171: .else
1.80 christos 172: @echo ${COMPILE.c:Q} ${.IMPSRC}
1.122 cgd 173: @${COMPILE.c} ${.IMPSRC} -o ${.TARGET}.o
1.62 christos 174: @${LD} -x -r ${.TARGET}.o -o ${.TARGET}
175: @rm -f ${.TARGET}.o
1.153 christos 176: .endif
1.1 cgd 177:
178: .c.po:
1.153 christos 179: .if defined(COPTS) && !empty(COPTS:M*-g*)
180: ${COMPILE.c} -pg ${.IMPSRC} -o ${.TARGET}
181: .else
1.80 christos 182: @echo ${COMPILE.c:Q} -pg ${.IMPSRC} -o ${.TARGET}
1.68 cgd 183: @${COMPILE.c} -pg ${.IMPSRC} -o ${.TARGET}.o
1.62 christos 184: @${LD} -X -r ${.TARGET}.o -o ${.TARGET}
185: @rm -f ${.TARGET}.o
1.153 christos 186: .endif
1.17 mycroft 187:
1.27 pk 188: .c.so:
1.153 christos 189: .if defined(COPTS) && !empty(COPTS:M*-g*)
1.205 yamt 190: ${COMPILE.c} ${CSHLIBFLAGS} ${.IMPSRC} -o ${.TARGET}
1.153 christos 191: .else
1.205 yamt 192: @echo ${COMPILE.c:Q} ${CSHLIBFLAGS} ${.IMPSRC} -o ${.TARGET}
193: @${COMPILE.c} ${CSHLIBFLAGS} ${.IMPSRC} -o ${.TARGET}.o
1.62 christos 194: @${LD} -x -r ${.TARGET}.o -o ${.TARGET}
195: @rm -f ${.TARGET}.o
1.153 christos 196: .endif
1.27 pk 197:
1.58 cgd 198: .c.ln:
1.121 thorpej 199: ${LINT} ${LINTFLAGS} ${CPPFLAGS:M-[IDU]*} -i ${.IMPSRC}
1.58 cgd 200:
1.18 mycroft 201: .cc.o .C.o:
1.153 christos 202: .if defined(COPTS) && !empty(COPTS:M*-g*)
203: ${COMPILE.cc} ${.IMPSRC}
204: .else
1.80 christos 205: @echo ${COMPILE.cc:Q} ${.IMPSRC}
1.62 christos 206: @${COMPILE.cc} ${.IMPSRC} -o ${.TARGET}.o
1.63 jtc 207: @${LD} -x -r ${.TARGET}.o -o ${.TARGET}
1.62 christos 208: @rm -f ${.TARGET}.o
1.153 christos 209: .endif
1.17 mycroft 210:
1.18 mycroft 211: .cc.po .C.po:
1.153 christos 212: .if defined(COPTS) && !empty(COPTS:M*-g*)
213: ${COMPILE.cc} -pg ${.IMPSRC} -o ${.TARGET}
214: .else
1.80 christos 215: @echo ${COMPILE.cc:Q} -pg ${.IMPSRC} -o ${.TARGET}
1.68 cgd 216: @${COMPILE.cc} -pg ${.IMPSRC} -o ${.TARGET}.o
1.62 christos 217: @${LD} -X -r ${.TARGET}.o -o ${.TARGET}
218: @rm -f ${.TARGET}.o
1.153 christos 219: .endif
1.28 cgd 220:
221: .cc.so .C.so:
1.153 christos 222: .if defined(COPTS) && !empty(COPTS:M*-g*)
1.205 yamt 223: ${COMPILE.cc} ${CSHLIBFLAGS} ${.IMPSRC} -o ${.TARGET}
1.153 christos 224: .else
1.86 jonathan 225: @echo ${COMPILE.cc:Q} ${CPICFLAGS} ${.IMPSRC} -o ${.TARGET}
1.205 yamt 226: @${COMPILE.cc} ${CSHLIBFLAGS} ${.IMPSRC} -o ${.TARGET}.o
1.62 christos 227: @${LD} -x -r ${.TARGET}.o -o ${.TARGET}
228: @rm -f ${.TARGET}.o
1.153 christos 229: .endif
1.118 lukem 230:
1.179 dmcmahil 231: .f.o:
232: .if defined(FOPTS) && !empty(FOPTS:M*-g*)
233: ${COMPILE.f} ${.IMPSRC}
234: .else
235: @echo ${COMPILE.f:Q} ${.IMPSRC}
236: @${COMPILE.f} ${.IMPSRC} -o ${.TARGET}.o
237: @${LD} -x -r ${.TARGET}.o -o ${.TARGET}
238: @rm -f ${.TARGET}.o
239: .endif
240:
241: .f.po:
242: .if defined(FOPTS) && !empty(FOPTS:M*-g*)
243: ${COMPILE.f} -pg ${.IMPSRC} -o ${.TARGET}
244: .else
245: @echo ${COMPILE.f:Q} -pg ${.IMPSRC} -o ${.TARGET}
246: @${COMPILE.f} -pg ${.IMPSRC} -o ${.TARGET}.o
247: @${LD} -X -r ${.TARGET}.o -o ${.TARGET}
248: @rm -f ${.TARGET}.o
249: .endif
250:
251: .f.so:
252: .if defined(FOPTS) && !empty(FOPTS:M*-g*)
253: ${COMPILE.f} ${FPICFLAGS} ${.IMPSRC} -o ${.TARGET}
254: .else
255: @echo ${COMPILE.f:Q} ${FPICFLAGS} ${.IMPSRC} -o ${.TARGET}
256: @${COMPILE.f} ${FPICFLAGS} ${.IMPSRC} -o ${.TARGET}.o
257: @${LD} -x -r ${.TARGET}.o -o ${.TARGET}
258: @rm -f ${.TARGET}.o
259: .endif
260:
261: .f.ln:
262: ${ECHO} Skipping lint for Fortran libraries.
263:
1.118 lukem 264: .m.o:
1.153 christos 265: .if defined(OBJCFLAGS) && !empty(OBJCFLAGS:M*-g*)
266: ${COMPILE.m} ${.IMPSRC}
267: .else
1.118 lukem 268: @echo ${COMPILE.m:Q} ${.IMPSRC}
1.122 cgd 269: @${COMPILE.m} ${.IMPSRC} -o ${.TARGET}.o
1.118 lukem 270: @${LD} -x -r ${.TARGET}.o -o ${.TARGET}
271: @rm -f ${.TARGET}.o
1.153 christos 272: .endif
1.118 lukem 273:
274: .m.po:
1.153 christos 275: .if defined(OBJCFLAGS) && !empty(OBJCFLAGS:M*-g*)
276: ${COMPILE.m} -pg ${.IMPSRC} -o ${.TARGET}
277: .else
1.118 lukem 278: @echo ${COMPILE.m:Q} -pg ${.IMPSRC} -o ${.TARGET}
279: @${COMPILE.m} -pg ${.IMPSRC} -o ${.TARGET}.o
280: @${LD} -X -r ${.TARGET}.o -o ${.TARGET}
281: @rm -f ${.TARGET}.o
1.153 christos 282: .endif
1.118 lukem 283:
284: .m.so:
1.153 christos 285: .if defined(OBJCFLAGS) && !empty(OBJCFLAGS:M*-g*)
1.205 yamt 286: ${COMPILE.m} ${CSHLIBFLAGS} ${.IMPSRC} -o ${.TARGET}
1.153 christos 287: .else
1.118 lukem 288: @echo ${COMPILE.m:Q} ${CPICFLAGS} ${.IMPSRC} -o ${.TARGET}
1.205 yamt 289: @${COMPILE.m} ${CSHLIBFLAGS} ${.IMPSRC} -o ${.TARGET}.o
1.118 lukem 290: @${LD} -x -r ${.TARGET}.o -o ${.TARGET}
291: @rm -f ${.TARGET}.o
1.153 christos 292: .endif
1.1 cgd 293:
1.40 cgd 294: .S.o .s.o:
1.211 thorpej 295: @echo ${COMPILE.S:Q} ${CFLAGS:M-[ID]*} ${AINC} ${.IMPSRC}
296: @${COMPILE.S} ${CFLAGS:M-[ID]*} ${AINC} ${.IMPSRC} -o ${.TARGET}.o
1.62 christos 297: @${LD} -x -r ${.TARGET}.o -o ${.TARGET}
298: @rm -f ${.TARGET}.o
1.1 cgd 299:
1.40 cgd 300: .S.po .s.po:
1.211 thorpej 301: @echo ${COMPILE.S:Q} -DGPROF -DPROF ${CFLAGS:M-[ID]*} ${AINC} ${.IMPSRC} -o ${.TARGET}
302: @${COMPILE.S} -DGPROF -DPROF ${CFLAGS:M-[ID]*} ${AINC} ${.IMPSRC} -o ${.TARGET}.o
1.62 christos 303: @${LD} -X -r ${.TARGET}.o -o ${.TARGET}
304: @rm -f ${.TARGET}.o
1.1 cgd 305:
1.40 cgd 306: .S.so .s.so:
1.211 thorpej 307: @echo ${COMPILE.S:Q} ${CAPICFLAGS} ${CFLAGS:M-[ID]*} ${AINC} ${.IMPSRC} -o ${.TARGET}
308: @${COMPILE.S} ${CAPICFLAGS} ${CFLAGS:M-[ID]*} ${AINC} ${.IMPSRC} -o ${.TARGET}.o
1.62 christos 309: @${LD} -x -r ${.TARGET}.o -o ${.TARGET}
310: @rm -f ${.TARGET}.o
1.27 pk 311:
1.148 lukem 312: .if ${MKPIC} == "no" || (defined(LDSTATIC) && ${LDSTATIC} != "") \
313: || ${MKLINKLIB} != "no"
1.130 tv 314: _LIBS=lib${LIB}.a
315: .else
316: _LIBS=
317: .endif
1.58 cgd 318:
1.167 matt 319: OBJS+=${SRCS:N*.h:N*.sh:R:S/$/.o/g}
1.158 christos 320:
1.149 lukem 321: .if ${MKPROFILE} != "no"
1.130 tv 322: _LIBS+=lib${LIB}_p.a
1.167 matt 323: POBJS+=${OBJS:.o=.po}
1.1 cgd 324: .endif
325:
1.148 lukem 326: .if ${MKPIC} != "no"
1.160 simonb 327: .if ${MKPICLIB} == "no"
1.205 yamt 328: .if ${MKSHLIBOBJS} != "no"
329: # make _pic.a, which isn't really pic,
330: # since it's needed for making shared lib.
331: # but don't install it.
332: SOLIB=lib${LIB}_pic.a
333: SOBJS+=${OBJS:.o=.so}
334: .else
1.160 simonb 335: SOLIB=lib${LIB}.a
1.205 yamt 336: .endif
1.160 simonb 337: .else
338: SOLIB=lib${LIB}_pic.a
339: _LIBS+=${SOLIB}
1.167 matt 340: SOBJS+=${OBJS:.o=.so}
1.160 simonb 341: .endif
1.171 christos 342: .if defined(SHLIB_FULLVERSION)
343: _LIBS+=lib${LIB}.so.${SHLIB_FULLVERSION}
1.27 pk 344: .endif
1.35 pk 345: .endif
1.27 pk 346:
1.179 dmcmahil 347: LOBJS+=${LSRCS:.c=.ln} ${SRCS:M*.c:.c=.ln}
348: .if ${MKLINT} != "no" && ${MKLINKLIB} != "no" && !empty(LOBJS)
1.58 cgd 349: _LIBS+=llib-l${LIB}.ln
1.27 pk 350: .endif
351:
1.167 matt 352: .if ${MKPIC} == "no" || (defined(LDSTATIC) && ${LDSTATIC} != "") \
353: || ${MKLINKLIB} != "no"
1.179 dmcmahil 354: ALLOBJS=${OBJS} ${POBJS} ${SOBJS}
1.167 matt 355: .else
1.179 dmcmahil 356: ALLOBJS=${POBJS} ${SOBJS}
357: .endif
358: .if ${MKLINT} != "no" && ${MKLINKLIB} != "no" && !empty(LOBJS)
359: ALLOBJS+=${LOBJS}
1.167 matt 360: .endif
1.186 tv 361:
1.191 tv 362: .NOPATH: ${ALLOBJS} ${_LIBS} ${SRCS:M*.[ly]:C/\..$/.c/} ${YHEADER:D${SRCS:M*.y:.y=.h}}
1.158 christos 363:
1.162 mycroft 364: realall: ${SRCS} ${ALLOBJS:O} ${_LIBS}
1.1 cgd 365:
1.90 christos 366: __archivebuild: .USE
1.89 christos 367: @rm -f ${.TARGET}
1.138 tv 368: @${AR} cq ${.TARGET} `NM=${NM} ${LORDER} ${.ALLSRC:M*o} | ${TSORT}`
1.89 christos 369: ${RANLIB} ${.TARGET}
370:
371: __archiveinstall: .USE
1.198 lukem 372: ${INSTALL_FILE} -o ${LIBOWN} -g ${LIBGRP} -m ${LIBMODE} \
1.208 perry 373: ${UPDATE:D:U-a "${RANLIB} -t"} ${SYSPKGTAG} ${.ALLSRC} ${.TARGET}
1.89 christos 374:
1.197 mycroft 375: __archivesymlinkpic: .USE
1.208 perry 376: ${INSTALL_SYMLINK} ${SYSPKGTAG} ${.ALLSRC} ${.TARGET}
1.197 mycroft 377:
1.191 tv 378: DPSRCS+= ${SRCS:M*.[ly]:C/\..$/.c/}
1.186 tv 379: CLEANFILES+= ${DPSRCS} ${YHEADER:D${SRCS:M*.y:.y=.h}}
1.103 mycroft 380:
1.89 christos 381: lib${LIB}.a:: ${OBJS} __archivebuild
1.1 cgd 382: @echo building standard ${LIB} library
383:
1.89 christos 384: lib${LIB}_p.a:: ${POBJS} __archivebuild
1.1 cgd 385: @echo building profiled ${LIB} library
386:
1.89 christos 387: lib${LIB}_pic.a:: ${SOBJS} __archivebuild
1.27 pk 388: @echo building shared object ${LIB} library
389:
1.171 christos 390: lib${LIB}.so.${SHLIB_FULLVERSION}: ${SOLIB} ${DPADD} \
1.88 cgd 391: ${SHLIB_LDSTARTFILE} ${SHLIB_LDENDFILE}
1.171 christos 392: @echo building shared ${LIB} library \(version ${SHLIB_FULLVERSION}\)
393: @rm -f lib${LIB}.so.${SHLIB_FULLVERSION}
1.152 fair 394: .if defined(DESTDIR)
1.155 wrstuden 395: $(LD) -nostdlib -x -shared ${SHLIB_SHFLAGS} -o ${.TARGET} \
1.152 fair 396: ${SHLIB_LDSTARTFILE} \
1.160 simonb 397: --whole-archive ${SOLIB} \
1.170 erh 398: --no-whole-archive ${LDADD} \
1.195 lukem 399: -L${DESTDIR}${_LIBSODIR} -L${DESTDIR}${LIBDIR} \
400: -R${_LIBSODIR} -R${LIBDIR} \
1.152 fair 401: ${SHLIB_LDENDFILE}
402: .else
1.126 jonathan 403: $(LD) -x -shared ${SHLIB_SHFLAGS} -o ${.TARGET} \
1.123 jonathan 404: ${SHLIB_LDSTARTFILE} \
1.160 simonb 405: --whole-archive ${SOLIB} --no-whole-archive ${LDADD} \
1.115 cjs 406: ${SHLIB_LDENDFILE}
1.152 fair 407: .endif
1.148 lukem 408: .if ${OBJECT_FMT} == "ELF"
1.196 lukem 409: # We don't use INSTALL_SYMLINK here because this is just
410: # happening inside the build directory/objdir. XXX Why does
411: # this spend so much effort on libraries that aren't live??? XXX
1.177 mycroft 412: ln -sf lib${LIB}.so.${SHLIB_FULLVERSION} lib${LIB}.so.${SHLIB_MAJOR}.tmp
413: mv -f lib${LIB}.so.${SHLIB_MAJOR}.tmp lib${LIB}.so.${SHLIB_MAJOR}
414: ln -sf lib${LIB}.so.${SHLIB_FULLVERSION} lib${LIB}.so.tmp
415: mv -f lib${LIB}.so.tmp lib${LIB}.so
1.133 tv 416: .endif
1.35 pk 417:
1.179 dmcmahil 418: .if !empty(LOBJS)
1.103 mycroft 419: LLIBS?= -lc
1.58 cgd 420: llib-l${LIB}.ln: ${LOBJS}
421: @echo building llib-l${LIB}.ln
422: @rm -f llib-l${LIB}.ln
1.206 thorpej 423: .if defined(DESTDIR)
424: @${LINT} -C${LIB} ${.ALLSRC} -L${DESTDIR}/usr/libdata ${LLIBS}
425: .else
1.141 wrstuden 426: @${LINT} -C${LIB} ${.ALLSRC} ${LLIBS}
1.206 thorpej 427: .endif
1.179 dmcmahil 428: .endif
1.1 cgd 429:
1.81 cgd 430: cleanlib:
1.48 mycroft 431: rm -f a.out [Ee]rrs mklog core *.core ${CLEANFILES}
1.59 cgd 432: rm -f lib${LIB}.a ${OBJS}
433: rm -f lib${LIB}_p.a ${POBJS}
1.133 tv 434: rm -f lib${LIB}_pic.a lib${LIB}.so.* lib${LIB}.so ${SOBJS}
1.59 cgd 435: rm -f llib-l${LIB}.ln ${LOBJS}
1.1 cgd 436:
1.26 mycroft 437: .if defined(SRCS)
1.64 christos 438: afterdepend: .depend
1.1 cgd 439: @(TMP=/tmp/_depend$$$$; \
1.79 cgd 440: sed -e 's/^\([^\.]*\).o[ ]*:/\1.o \1.po \1.so \1.ln:/' \
1.58 cgd 441: < .depend > $$TMP; \
1.1 cgd 442: mv $$TMP .depend)
1.26 mycroft 443: .endif
1.1 cgd 444:
1.97 mycroft 445: .if !target(libinstall)
1.148 lukem 446: # Make sure it gets defined, in case MKPIC==no && MKLINKLIB==no
1.139 tv 447: libinstall::
448:
1.148 lukem 449: .if ${MKLINKLIB} != "no"
1.89 christos 450: libinstall:: ${DESTDIR}${LIBDIR}/lib${LIB}.a
1.168 mycroft 451: .PRECIOUS: ${DESTDIR}${LIBDIR}/lib${LIB}.a
1.197 mycroft 452:
1.89 christos 453: .if !defined(UPDATE)
1.197 mycroft 454: .if !defined(BUILD) && !make(all) && !make(lib${LIB}.a)
455: ${DESTDIR}${LIBDIR}/lib${LIB}.a! .MADE
1.89 christos 456: .endif
1.197 mycroft 457: ${DESTDIR}${LIBDIR}/lib${LIB}.a! lib${LIB}.a __archiveinstall
458: .else
1.157 fredb 459: .if !defined(BUILD) && !make(all) && !make(lib${LIB}.a)
1.89 christos 460: ${DESTDIR}${LIBDIR}/lib${LIB}.a: .MADE
461: .endif
462: ${DESTDIR}${LIBDIR}/lib${LIB}.a: lib${LIB}.a __archiveinstall
1.130 tv 463: .endif
1.197 mycroft 464: .endif
1.89 christos 465:
1.149 lukem 466: .if ${MKPROFILE} != "no"
1.89 christos 467: libinstall:: ${DESTDIR}${LIBDIR}/lib${LIB}_p.a
1.168 mycroft 468: .PRECIOUS: ${DESTDIR}${LIBDIR}/lib${LIB}_p.a
1.197 mycroft 469:
1.89 christos 470: .if !defined(UPDATE)
1.197 mycroft 471: .if !defined(BUILD) && !make(all) && !make(lib${LIB}_p.a)
472: ${DESTDIR}${LIBDIR}/lib${LIB}_p.a! .MADE
1.32 pk 473: .endif
1.197 mycroft 474: ${DESTDIR}${LIBDIR}/lib${LIB}_p.a! lib${LIB}_p.a __archiveinstall
475: .else
1.157 fredb 476: .if !defined(BUILD) && !make(all) && !make(lib${LIB}_p.a)
1.89 christos 477: ${DESTDIR}${LIBDIR}/lib${LIB}_p.a: .MADE
478: .endif
479: ${DESTDIR}${LIBDIR}/lib${LIB}_p.a: lib${LIB}_p.a __archiveinstall
480: .endif
1.197 mycroft 481: .endif
1.89 christos 482:
1.149 lukem 483: .if ${MKPIC} != "no" && ${MKPICINSTALL} != "no"
1.168 mycroft 484: libinstall:: ${DESTDIR}${LIBDIR}/lib${LIB}_pic.a
1.160 simonb 485: .PRECIOUS: ${DESTDIR}${LIBDIR}/lib${LIB}_pic.a
1.197 mycroft 486:
1.89 christos 487: .if !defined(UPDATE)
1.197 mycroft 488: .if !defined(BUILD) && !make(all) && !make(lib${LIB}_pic.a)
489: ${DESTDIR}${LIBDIR}/lib${LIB}_pic.a! .MADE
1.89 christos 490: .endif
1.197 mycroft 491: .if ${MKPICLIB} == "no"
492: ${DESTDIR}${LIBDIR}/lib${LIB}_pic.a! lib${LIB}.a __archivesymlinkpic
493: .else
494: ${DESTDIR}${LIBDIR}/lib${LIB}_pic.a! lib${LIB}_pic.a __archiveinstall
495: .endif
496: .else
1.157 fredb 497: .if !defined(BUILD) && !make(all) && !make(lib${LIB}_pic.a)
1.89 christos 498: ${DESTDIR}${LIBDIR}/lib${LIB}_pic.a: .MADE
1.33 pk 499: .endif
1.160 simonb 500: .if ${MKPICLIB} == "no"
1.197 mycroft 501: ${DESTDIR}${LIBDIR}/lib${LIB}_pic.a: lib${LIB}.a __archivesymlinkpic
1.160 simonb 502: .else
1.89 christos 503: ${DESTDIR}${LIBDIR}/lib${LIB}_pic.a: lib${LIB}_pic.a __archiveinstall
1.160 simonb 504: .endif
1.89 christos 505: .endif
1.197 mycroft 506: .endif
1.89 christos 507:
1.171 christos 508: .if ${MKPIC} != "no" && defined(SHLIB_FULLVERSION)
1.195 lukem 509: libinstall:: ${DESTDIR}${_LIBSODIR}/lib${LIB}.so.${SHLIB_FULLVERSION}
510: .PRECIOUS: ${DESTDIR}${_LIBSODIR}/lib${LIB}.so.${SHLIB_FULLVERSION}
1.197 mycroft 511:
1.89 christos 512: .if !defined(UPDATE)
1.197 mycroft 513: .if !defined(BUILD) && !make(all) && !make(lib${LIB}.so.${SHLIB_FULLVERSION})
514: ${DESTDIR}${_LIBSODIR}/lib${LIB}.so.${SHLIB_FULLVERSION}! .MADE
1.89 christos 515: .endif
1.197 mycroft 516: ${DESTDIR}${_LIBSODIR}/lib${LIB}.so.${SHLIB_FULLVERSION}! lib${LIB}.so.${SHLIB_FULLVERSION}
517: .else
1.171 christos 518: .if !defined(BUILD) && !make(all) && !make(lib${LIB}.so.${SHLIB_FULLVERSION})
1.195 lukem 519: ${DESTDIR}${_LIBSODIR}/lib${LIB}.so.${SHLIB_FULLVERSION}: .MADE
1.89 christos 520: .endif
1.195 lukem 521: ${DESTDIR}${_LIBSODIR}/lib${LIB}.so.${SHLIB_FULLVERSION}: lib${LIB}.so.${SHLIB_FULLVERSION}
1.197 mycroft 522: .endif
1.188 tv 523: ${INSTALL_FILE} -o ${LIBOWN} -g ${LIBGRP} -m ${LIBMODE} \
1.208 perry 524: ${SYSPKGTAG} ${.ALLSRC} ${.TARGET}
1.195 lukem 525: .if ${_LIBSODIR} != ${LIBDIR}
1.208 perry 526: ${INSTALL_SYMLINK} ${SYSPKGTAG} \
527: ${_LIBSODIR}/lib${LIB}.so.${SHLIB_FULLVERSION} \
528: ${DESTDIR}${LIBDIR}/lib${LIB}.so.${SHLIB_FULLVERSION}
1.195 lukem 529: .endif
1.148 lukem 530: .if ${OBJECT_FMT} == "a.out" && !defined(DESTDIR)
1.195 lukem 531: /sbin/ldconfig -m ${_LIBSODIR} ${LIBDIR}
1.146 thorpej 532: .endif
1.148 lukem 533: .if ${OBJECT_FMT} == "ELF"
1.208 perry 534: ${INSTALL_SYMLINK} ${SYSPKGTAG} \
535: lib${LIB}.so.${SHLIB_FULLVERSION} \
536: ${DESTDIR}${_LIBSODIR}/lib${LIB}.so.${SHLIB_MAJOR}
1.195 lukem 537: .if ${_LIBSODIR} != ${LIBDIR}
1.208 perry 538: ${INSTALL_SYMLINK} ${SYSPKGTAG} \
539: ${_LIBSODIR}/lib${LIB}.so.${SHLIB_FULLVERSION} \
540: ${DESTDIR}${LIBDIR}/lib${LIB}.so.${SHLIB_MAJOR}
1.195 lukem 541: .endif
1.148 lukem 542: .if ${MKLINKLIB} != "no"
1.208 perry 543: ${INSTALL_SYMLINK} ${SYSPKGTAG} \
544: lib${LIB}.so.${SHLIB_FULLVERSION} \
545: ${DESTDIR}${_LIBSODIR}/lib${LIB}.so
1.195 lukem 546: .if ${_LIBSODIR} != ${LIBDIR}
1.208 perry 547: ${INSTALL_SYMLINK} ${SYSPKGTAG} \
548: ${_LIBSODIR}/lib${LIB}.so.${SHLIB_FULLVERSION} \
549: ${DESTDIR}${LIBDIR}/lib${LIB}.so
1.195 lukem 550: .endif
1.83 cgd 551: .endif
1.12 cgd 552: .endif
1.139 tv 553: .endif
1.89 christos 554:
1.179 dmcmahil 555: .if ${MKLINT} != "no" && ${MKLINKLIB} != "no" && !empty(LOBJS)
1.89 christos 556: libinstall:: ${DESTDIR}${LINTLIBDIR}/llib-l${LIB}.ln
1.168 mycroft 557: .PRECIOUS: ${DESTDIR}${LINTLIBDIR}/llib-l${LIB}.ln
1.197 mycroft 558:
1.89 christos 559: .if !defined(UPDATE)
1.197 mycroft 560: .if !defined(BUILD) && !make(all) && !make(llib-l${LIB}.ln)
561: ${DESTDIR}${LINTLIBDIR}/llib-l${LIB}.ln! .MADE
1.89 christos 562: .endif
1.197 mycroft 563: ${DESTDIR}${LINTLIBDIR}/llib-l${LIB}.ln! llib-l${LIB}.ln
564: .else
1.157 fredb 565: .if !defined(BUILD) && !make(all) && !make(llib-l${LIB}.ln)
1.89 christos 566: ${DESTDIR}${LINTLIBDIR}/llib-l${LIB}.ln: .MADE
567: .endif
1.95 mycroft 568: ${DESTDIR}${LINTLIBDIR}/llib-l${LIB}.ln: llib-l${LIB}.ln
1.197 mycroft 569: .endif
1.188 tv 570: ${INSTALL_FILE} -o ${LIBOWN} -g ${LIBGRP} -m ${LIBMODE} \
1.208 perry 571: ${SYSPKGTAG} ${.ALLSRC} ${DESTDIR}${LINTLIBDIR}
1.58 cgd 572: .endif
1.1 cgd 573: .endif
574:
1.188 tv 575: ##### Pull in related .mk logic
1.1 cgd 576: .include <bsd.man.mk>
1.57 jtc 577: .include <bsd.nls.mk>
1.91 christos 578: .include <bsd.files.mk>
1.89 christos 579: .include <bsd.inc.mk>
1.109 cjs 580: .include <bsd.links.mk>
1.24 mycroft 581: .include <bsd.dep.mk>
1.66 christos 582: .include <bsd.sys.mk>
1.117 mycroft 583:
1.188 tv 584: ${TARGETS}: # ensure existence
CVSweb <webmaster@jp.NetBSD.org>