mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-03-07 14:18:15 +08:00
includes libtool support includes select yield changes headers updates Apply strdup() -> ldap_strdup() patch.
13 lines
310 B
Makefile
13 lines
310 B
Makefile
##---------------------------------------------------------------------------
|
|
##
|
|
## Makefile Template for Static Libraries
|
|
##
|
|
|
|
$(LIBRARY): version.o
|
|
$(AR) ru $@ $(OBJS) version.o
|
|
@$(RANLIB) $@; \
|
|
$(RM) ../$@; \
|
|
(d=`$(PWD)` ; $(LN_S) `$(BASENAME) $$d`/$@ ../$@)
|
|
|
|
Makefile: $(top_srcdir)/build/lib-static.mk
|