mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-03-07 14:18:15 +08:00
21 lines
479 B
Makefile
21 lines
479 B
Makefile
|
##---------------------------------------------------------------------------
|
||
|
##
|
||
|
## Makefile Template for Shared Libraries
|
||
|
##
|
||
|
|
||
|
LINK = $(LTLINK) -version-info $(LIBVERSION)
|
||
|
COMPILE = $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) -c
|
||
|
MKDEPFLAG = -l
|
||
|
|
||
|
.SUFFIXES: .c .o .lo
|
||
|
|
||
|
.c.lo:
|
||
|
$(COMPILE) $<
|
||
|
|
||
|
$(LIBRARY): version.lo
|
||
|
$(LINK) -rpath $(libdir) -o $@ $(OBJS) version.lo
|
||
|
@$(RM) ../$@; \
|
||
|
(d=`$(PWD)` ; $(LN_S) `$(BASENAME) $$d`/$@ ../$@)
|
||
|
|
||
|
Makefile: $(top_srcdir)/build/lib-shared.mk
|