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