mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-09 02:52:04 +08:00
3b15c6f10f
Remove back-perl, back-sql, back-tcl from branch as they have yet to be updated. Additional changes are needed prior to release of alpha4.
17 lines
481 B
Makefile
17 lines
481 B
Makefile
# $OpenLDAP$
|
|
## Copyright 1998-2000 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)` ; cd .. ; $(LN_S) `$(BASENAME) $$d`/$@ $@)
|
|
|
|
Makefile: $(top_srcdir)/build/lib-static.mk
|