mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-15 03:01:09 +08:00
16 lines
463 B
Makefile
16 lines
463 B
Makefile
## Copyright 1998,1999 The OpenLDAP Foundation
|
|
## COPYING RESTRICTIONS APPLY. See COPYRIGHT File in top level directory
|
|
## of this package for details.
|
|
##---------------------------------------------------------------------------
|
|
##
|
|
## 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
|