mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-11-21 01:04:44 +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.
37 lines
885 B
Makefile
37 lines
885 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 Libraries
|
|
##
|
|
|
|
all-common: $(LIBRARY) $(PROGRAMS)
|
|
|
|
version.c: $(OBJS)
|
|
$(RM) $@
|
|
$(MKVERSION) $(LIBRARY) > $@
|
|
|
|
install-common: FORCE
|
|
|
|
lint: lint-local FORCE
|
|
$(LINT) $(DEFS) $(DEFINES) $(SRCS)
|
|
|
|
lint5: lint5-local FORCE
|
|
$(5LINT) $(DEFS) $(DEFINES) $(SRCS)
|
|
|
|
clean-common: FORCE
|
|
$(RM) $(LIBRARY) ../$(LIBRARY) $(XLIBRARY) \
|
|
$(PROGRAMS) $(XPROGRAMS) $(XSRCS) $(XXSRCS) \
|
|
*.o *.lo a.out *.exe core version.c .libs/* \
|
|
../`$(BASENAME) $(LIBRARY) .la`{.a,.so*,*.dll}
|
|
|
|
depend-common: FORCE
|
|
$(MKDEP) $(DEFS) $(DEFINES) $(SRCS) $(XXSRCS)
|
|
|
|
lint-local: FORCE
|
|
lint5-local: FORCE
|
|
|
|
Makefile: $(top_srcdir)/build/lib.mk
|