mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-30 11:39:34 -05:00
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
|