Annotation of src/share/mk/bsd.lib.mk, Revision 1.215
1.215 ! christos 1: # $NetBSD: bsd.lib.mk,v 1.214 2003/04/11 22:40:31 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.215 ! christos 312: .if defined(LIB)
1.148 lukem 313: .if ${MKPIC} == "no" || (defined(LDSTATIC) && ${LDSTATIC} != "") \
314: || ${MKLINKLIB} != "no"
1.130 tv 315: _LIBS=lib${LIB}.a
316: .else
317: _LIBS=
318: .endif
1.58 cgd 319:
1.167 matt 320: OBJS+=${SRCS:N*.h:N*.sh:R:S/$/.o/g}
1.158 christos 321:
1.149 lukem 322: .if ${MKPROFILE} != "no"
1.130 tv 323: _LIBS+=lib${LIB}_p.a
1.167 matt 324: POBJS+=${OBJS:.o=.po}
1.1 cgd 325: .endif
326:
1.148 lukem 327: .if ${MKPIC} != "no"
1.160 simonb 328: .if ${MKPICLIB} == "no"
1.205 yamt 329: .if ${MKSHLIBOBJS} != "no"
330: # make _pic.a, which isn't really pic,
331: # since it's needed for making shared lib.
332: # but don't install it.
333: SOLIB=lib${LIB}_pic.a
334: SOBJS+=${OBJS:.o=.so}
335: .else
1.160 simonb 336: SOLIB=lib${LIB}.a
1.205 yamt 337: .endif
1.160 simonb 338: .else
339: SOLIB=lib${LIB}_pic.a
340: _LIBS+=${SOLIB}
1.167 matt 341: SOBJS+=${OBJS:.o=.so}
1.160 simonb 342: .endif
1.171 christos 343: .if defined(SHLIB_FULLVERSION)
344: _LIBS+=lib${LIB}.so.${SHLIB_FULLVERSION}
1.27 pk 345: .endif
1.35 pk 346: .endif
1.27 pk 347:
1.179 dmcmahil 348: LOBJS+=${LSRCS:.c=.ln} ${SRCS:M*.c:.c=.ln}
349: .if ${MKLINT} != "no" && ${MKLINKLIB} != "no" && !empty(LOBJS)
1.58 cgd 350: _LIBS+=llib-l${LIB}.ln
1.215 ! christos 351: .endif
1.27 pk 352: .endif
353:
1.167 matt 354: .if ${MKPIC} == "no" || (defined(LDSTATIC) && ${LDSTATIC} != "") \
355: || ${MKLINKLIB} != "no"
1.179 dmcmahil 356: ALLOBJS=${OBJS} ${POBJS} ${SOBJS}
1.167 matt 357: .else
1.179 dmcmahil 358: ALLOBJS=${POBJS} ${SOBJS}
359: .endif
360: .if ${MKLINT} != "no" && ${MKLINKLIB} != "no" && !empty(LOBJS)
361: ALLOBJS+=${LOBJS}
1.167 matt 362: .endif
1.186 tv 363:
1.191 tv 364: .NOPATH: ${ALLOBJS} ${_LIBS} ${SRCS:M*.[ly]:C/\..$/.c/} ${YHEADER:D${SRCS:M*.y:.y=.h}}
1.158 christos 365:
1.162 mycroft 366: realall: ${SRCS} ${ALLOBJS:O} ${_LIBS}
1.1 cgd 367:
1.90 christos 368: __archivebuild: .USE
1.89 christos 369: @rm -f ${.TARGET}
1.138 tv 370: @${AR} cq ${.TARGET} `NM=${NM} ${LORDER} ${.ALLSRC:M*o} | ${TSORT}`
1.89 christos 371: ${RANLIB} ${.TARGET}
372:
373: __archiveinstall: .USE
1.198 lukem 374: ${INSTALL_FILE} -o ${LIBOWN} -g ${LIBGRP} -m ${LIBMODE} \
1.208 perry 375: ${UPDATE:D:U-a "${RANLIB} -t"} ${SYSPKGTAG} ${.ALLSRC} ${.TARGET}
1.89 christos 376:
1.197 mycroft 377: __archivesymlinkpic: .USE
1.208 perry 378: ${INSTALL_SYMLINK} ${SYSPKGTAG} ${.ALLSRC} ${.TARGET}
1.197 mycroft 379:
1.191 tv 380: DPSRCS+= ${SRCS:M*.[ly]:C/\..$/.c/}
1.186 tv 381: CLEANFILES+= ${DPSRCS} ${YHEADER:D${SRCS:M*.y:.y=.h}}
1.103 mycroft 382:
1.89 christos 383: lib${LIB}.a:: ${OBJS} __archivebuild
1.1 cgd 384: @echo building standard ${LIB} library
385:
1.89 christos 386: lib${LIB}_p.a:: ${POBJS} __archivebuild
1.1 cgd 387: @echo building profiled ${LIB} library
388:
1.89 christos 389: lib${LIB}_pic.a:: ${SOBJS} __archivebuild
1.27 pk 390: @echo building shared object ${LIB} library
391:
1.171 christos 392: lib${LIB}.so.${SHLIB_FULLVERSION}: ${SOLIB} ${DPADD} \
1.88 cgd 393: ${SHLIB_LDSTARTFILE} ${SHLIB_LDENDFILE}
1.171 christos 394: @echo building shared ${LIB} library \(version ${SHLIB_FULLVERSION}\)
395: @rm -f lib${LIB}.so.${SHLIB_FULLVERSION}
1.152 fair 396: .if defined(DESTDIR)
1.155 wrstuden 397: $(LD) -nostdlib -x -shared ${SHLIB_SHFLAGS} -o ${.TARGET} \
1.152 fair 398: ${SHLIB_LDSTARTFILE} \
1.160 simonb 399: --whole-archive ${SOLIB} \
1.170 erh 400: --no-whole-archive ${LDADD} \
1.195 lukem 401: -L${DESTDIR}${_LIBSODIR} -L${DESTDIR}${LIBDIR} \
402: -R${_LIBSODIR} -R${LIBDIR} \
1.152 fair 403: ${SHLIB_LDENDFILE}
404: .else
1.126 jonathan 405: $(LD) -x -shared ${SHLIB_SHFLAGS} -o ${.TARGET} \
1.123 jonathan 406: ${SHLIB_LDSTARTFILE} \
1.160 simonb 407: --whole-archive ${SOLIB} --no-whole-archive ${LDADD} \
1.115 cjs 408: ${SHLIB_LDENDFILE}
1.152 fair 409: .endif
1.148 lukem 410: .if ${OBJECT_FMT} == "ELF"
1.196 lukem 411: # We don't use INSTALL_SYMLINK here because this is just
412: # happening inside the build directory/objdir. XXX Why does
413: # this spend so much effort on libraries that aren't live??? XXX
1.177 mycroft 414: ln -sf lib${LIB}.so.${SHLIB_FULLVERSION} lib${LIB}.so.${SHLIB_MAJOR}.tmp
415: mv -f lib${LIB}.so.${SHLIB_MAJOR}.tmp lib${LIB}.so.${SHLIB_MAJOR}
416: ln -sf lib${LIB}.so.${SHLIB_FULLVERSION} lib${LIB}.so.tmp
417: mv -f lib${LIB}.so.tmp lib${LIB}.so
1.133 tv 418: .endif
1.35 pk 419:
1.179 dmcmahil 420: .if !empty(LOBJS)
1.103 mycroft 421: LLIBS?= -lc
1.58 cgd 422: llib-l${LIB}.ln: ${LOBJS}
423: @echo building llib-l${LIB}.ln
424: @rm -f llib-l${LIB}.ln
1.206 thorpej 425: .if defined(DESTDIR)
426: @${LINT} -C${LIB} ${.ALLSRC} -L${DESTDIR}/usr/libdata ${LLIBS}
427: .else
1.141 wrstuden 428: @${LINT} -C${LIB} ${.ALLSRC} ${LLIBS}
1.206 thorpej 429: .endif
1.179 dmcmahil 430: .endif
1.1 cgd 431:
1.81 cgd 432: cleanlib:
1.48 mycroft 433: rm -f a.out [Ee]rrs mklog core *.core ${CLEANFILES}
1.59 cgd 434: rm -f lib${LIB}.a ${OBJS}
435: rm -f lib${LIB}_p.a ${POBJS}
1.133 tv 436: rm -f lib${LIB}_pic.a lib${LIB}.so.* lib${LIB}.so ${SOBJS}
1.59 cgd 437: rm -f llib-l${LIB}.ln ${LOBJS}
1.1 cgd 438:
1.26 mycroft 439: .if defined(SRCS)
1.64 christos 440: afterdepend: .depend
1.1 cgd 441: @(TMP=/tmp/_depend$$$$; \
1.79 cgd 442: sed -e 's/^\([^\.]*\).o[ ]*:/\1.o \1.po \1.so \1.ln:/' \
1.58 cgd 443: < .depend > $$TMP; \
1.1 cgd 444: mv $$TMP .depend)
1.26 mycroft 445: .endif
1.1 cgd 446:
1.97 mycroft 447: .if !target(libinstall)
1.148 lukem 448: # Make sure it gets defined, in case MKPIC==no && MKLINKLIB==no
1.139 tv 449: libinstall::
450:
1.148 lukem 451: .if ${MKLINKLIB} != "no"
1.89 christos 452: libinstall:: ${DESTDIR}${LIBDIR}/lib${LIB}.a
1.168 mycroft 453: .PRECIOUS: ${DESTDIR}${LIBDIR}/lib${LIB}.a
1.197 mycroft 454:
1.89 christos 455: .if !defined(UPDATE)
1.197 mycroft 456: .if !defined(BUILD) && !make(all) && !make(lib${LIB}.a)
457: ${DESTDIR}${LIBDIR}/lib${LIB}.a! .MADE
1.89 christos 458: .endif
1.197 mycroft 459: ${DESTDIR}${LIBDIR}/lib${LIB}.a! lib${LIB}.a __archiveinstall
460: .else
1.157 fredb 461: .if !defined(BUILD) && !make(all) && !make(lib${LIB}.a)
1.89 christos 462: ${DESTDIR}${LIBDIR}/lib${LIB}.a: .MADE
463: .endif
464: ${DESTDIR}${LIBDIR}/lib${LIB}.a: lib${LIB}.a __archiveinstall
1.130 tv 465: .endif
1.197 mycroft 466: .endif
1.89 christos 467:
1.149 lukem 468: .if ${MKPROFILE} != "no"
1.89 christos 469: libinstall:: ${DESTDIR}${LIBDIR}/lib${LIB}_p.a
1.168 mycroft 470: .PRECIOUS: ${DESTDIR}${LIBDIR}/lib${LIB}_p.a
1.197 mycroft 471:
1.89 christos 472: .if !defined(UPDATE)
1.197 mycroft 473: .if !defined(BUILD) && !make(all) && !make(lib${LIB}_p.a)
474: ${DESTDIR}${LIBDIR}/lib${LIB}_p.a! .MADE
1.32 pk 475: .endif
1.197 mycroft 476: ${DESTDIR}${LIBDIR}/lib${LIB}_p.a! lib${LIB}_p.a __archiveinstall
477: .else
1.157 fredb 478: .if !defined(BUILD) && !make(all) && !make(lib${LIB}_p.a)
1.89 christos 479: ${DESTDIR}${LIBDIR}/lib${LIB}_p.a: .MADE
480: .endif
481: ${DESTDIR}${LIBDIR}/lib${LIB}_p.a: lib${LIB}_p.a __archiveinstall
482: .endif
1.197 mycroft 483: .endif
1.89 christos 484:
1.149 lukem 485: .if ${MKPIC} != "no" && ${MKPICINSTALL} != "no"
1.168 mycroft 486: libinstall:: ${DESTDIR}${LIBDIR}/lib${LIB}_pic.a
1.160 simonb 487: .PRECIOUS: ${DESTDIR}${LIBDIR}/lib${LIB}_pic.a
1.197 mycroft 488:
1.89 christos 489: .if !defined(UPDATE)
1.197 mycroft 490: .if !defined(BUILD) && !make(all) && !make(lib${LIB}_pic.a)
491: ${DESTDIR}${LIBDIR}/lib${LIB}_pic.a! .MADE
1.89 christos 492: .endif
1.197 mycroft 493: .if ${MKPICLIB} == "no"
494: ${DESTDIR}${LIBDIR}/lib${LIB}_pic.a! lib${LIB}.a __archivesymlinkpic
495: .else
496: ${DESTDIR}${LIBDIR}/lib${LIB}_pic.a! lib${LIB}_pic.a __archiveinstall
497: .endif
498: .else
1.157 fredb 499: .if !defined(BUILD) && !make(all) && !make(lib${LIB}_pic.a)
1.89 christos 500: ${DESTDIR}${LIBDIR}/lib${LIB}_pic.a: .MADE
1.33 pk 501: .endif
1.160 simonb 502: .if ${MKPICLIB} == "no"
1.197 mycroft 503: ${DESTDIR}${LIBDIR}/lib${LIB}_pic.a: lib${LIB}.a __archivesymlinkpic
1.160 simonb 504: .else
1.89 christos 505: ${DESTDIR}${LIBDIR}/lib${LIB}_pic.a: lib${LIB}_pic.a __archiveinstall
1.160 simonb 506: .endif
1.89 christos 507: .endif
1.197 mycroft 508: .endif
1.89 christos 509:
1.171 christos 510: .if ${MKPIC} != "no" && defined(SHLIB_FULLVERSION)
1.195 lukem 511: libinstall:: ${DESTDIR}${_LIBSODIR}/lib${LIB}.so.${SHLIB_FULLVERSION}
512: .PRECIOUS: ${DESTDIR}${_LIBSODIR}/lib${LIB}.so.${SHLIB_FULLVERSION}
1.197 mycroft 513:
1.89 christos 514: .if !defined(UPDATE)
1.197 mycroft 515: .if !defined(BUILD) && !make(all) && !make(lib${LIB}.so.${SHLIB_FULLVERSION})
516: ${DESTDIR}${_LIBSODIR}/lib${LIB}.so.${SHLIB_FULLVERSION}! .MADE
1.89 christos 517: .endif
1.197 mycroft 518: ${DESTDIR}${_LIBSODIR}/lib${LIB}.so.${SHLIB_FULLVERSION}! lib${LIB}.so.${SHLIB_FULLVERSION}
519: .else
1.171 christos 520: .if !defined(BUILD) && !make(all) && !make(lib${LIB}.so.${SHLIB_FULLVERSION})
1.195 lukem 521: ${DESTDIR}${_LIBSODIR}/lib${LIB}.so.${SHLIB_FULLVERSION}: .MADE
1.89 christos 522: .endif
1.195 lukem 523: ${DESTDIR}${_LIBSODIR}/lib${LIB}.so.${SHLIB_FULLVERSION}: lib${LIB}.so.${SHLIB_FULLVERSION}
1.197 mycroft 524: .endif
1.188 tv 525: ${INSTALL_FILE} -o ${LIBOWN} -g ${LIBGRP} -m ${LIBMODE} \
1.208 perry 526: ${SYSPKGTAG} ${.ALLSRC} ${.TARGET}
1.195 lukem 527: .if ${_LIBSODIR} != ${LIBDIR}
1.208 perry 528: ${INSTALL_SYMLINK} ${SYSPKGTAG} \
529: ${_LIBSODIR}/lib${LIB}.so.${SHLIB_FULLVERSION} \
530: ${DESTDIR}${LIBDIR}/lib${LIB}.so.${SHLIB_FULLVERSION}
1.195 lukem 531: .endif
1.148 lukem 532: .if ${OBJECT_FMT} == "a.out" && !defined(DESTDIR)
1.195 lukem 533: /sbin/ldconfig -m ${_LIBSODIR} ${LIBDIR}
1.146 thorpej 534: .endif
1.148 lukem 535: .if ${OBJECT_FMT} == "ELF"
1.208 perry 536: ${INSTALL_SYMLINK} ${SYSPKGTAG} \
537: lib${LIB}.so.${SHLIB_FULLVERSION} \
538: ${DESTDIR}${_LIBSODIR}/lib${LIB}.so.${SHLIB_MAJOR}
1.195 lukem 539: .if ${_LIBSODIR} != ${LIBDIR}
1.208 perry 540: ${INSTALL_SYMLINK} ${SYSPKGTAG} \
541: ${_LIBSODIR}/lib${LIB}.so.${SHLIB_FULLVERSION} \
542: ${DESTDIR}${LIBDIR}/lib${LIB}.so.${SHLIB_MAJOR}
1.195 lukem 543: .endif
1.148 lukem 544: .if ${MKLINKLIB} != "no"
1.208 perry 545: ${INSTALL_SYMLINK} ${SYSPKGTAG} \
546: lib${LIB}.so.${SHLIB_FULLVERSION} \
547: ${DESTDIR}${_LIBSODIR}/lib${LIB}.so
1.195 lukem 548: .if ${_LIBSODIR} != ${LIBDIR}
1.208 perry 549: ${INSTALL_SYMLINK} ${SYSPKGTAG} \
550: ${_LIBSODIR}/lib${LIB}.so.${SHLIB_FULLVERSION} \
551: ${DESTDIR}${LIBDIR}/lib${LIB}.so
1.195 lukem 552: .endif
1.83 cgd 553: .endif
1.12 cgd 554: .endif
1.139 tv 555: .endif
1.89 christos 556:
1.179 dmcmahil 557: .if ${MKLINT} != "no" && ${MKLINKLIB} != "no" && !empty(LOBJS)
1.89 christos 558: libinstall:: ${DESTDIR}${LINTLIBDIR}/llib-l${LIB}.ln
1.168 mycroft 559: .PRECIOUS: ${DESTDIR}${LINTLIBDIR}/llib-l${LIB}.ln
1.197 mycroft 560:
1.89 christos 561: .if !defined(UPDATE)
1.197 mycroft 562: .if !defined(BUILD) && !make(all) && !make(llib-l${LIB}.ln)
563: ${DESTDIR}${LINTLIBDIR}/llib-l${LIB}.ln! .MADE
1.89 christos 564: .endif
1.197 mycroft 565: ${DESTDIR}${LINTLIBDIR}/llib-l${LIB}.ln! llib-l${LIB}.ln
566: .else
1.157 fredb 567: .if !defined(BUILD) && !make(all) && !make(llib-l${LIB}.ln)
1.89 christos 568: ${DESTDIR}${LINTLIBDIR}/llib-l${LIB}.ln: .MADE
569: .endif
1.95 mycroft 570: ${DESTDIR}${LINTLIBDIR}/llib-l${LIB}.ln: llib-l${LIB}.ln
1.197 mycroft 571: .endif
1.188 tv 572: ${INSTALL_FILE} -o ${LIBOWN} -g ${LIBGRP} -m ${LIBMODE} \
1.208 perry 573: ${SYSPKGTAG} ${.ALLSRC} ${DESTDIR}${LINTLIBDIR}
1.58 cgd 574: .endif
1.1 cgd 575: .endif
576:
1.188 tv 577: ##### Pull in related .mk logic
1.1 cgd 578: .include <bsd.man.mk>
1.57 jtc 579: .include <bsd.nls.mk>
1.91 christos 580: .include <bsd.files.mk>
1.89 christos 581: .include <bsd.inc.mk>
1.109 cjs 582: .include <bsd.links.mk>
1.24 mycroft 583: .include <bsd.dep.mk>
1.66 christos 584: .include <bsd.sys.mk>
1.117 mycroft 585:
1.188 tv 586: ${TARGETS}: # ensure existence
CVSweb <webmaster@jp.NetBSD.org>