mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-02-05 13:40:08 +08: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
|