1999-08-30 16:08:00 +08:00
|
|
|
# $OpenLDAP$
|
1998-12-29 03:58:57 +08:00
|
|
|
## Copyright 1998,1999 The OpenLDAP Foundation
|
|
|
|
## COPYING RESTRICTIONS APPLY. See COPYRIGHT File in top level directory
|
|
|
|
## of this package for details.
|
1998-10-25 09:41:42 +08:00
|
|
|
##---------------------------------------------------------------------------
|
|
|
|
##
|
|
|
|
## Makefile Template for Libraries
|
|
|
|
##
|
|
|
|
|
|
|
|
all-common: $(LIBRARY) $(PROGRAMS)
|
|
|
|
|
1999-04-30 02:28:57 +08:00
|
|
|
version.c: $(OBJS)
|
1998-10-25 09:41:42 +08:00
|
|
|
$(RM) $@
|
1999-04-30 02:28:57 +08:00
|
|
|
$(MKVERSION) $(LIBRARY) > $@
|
1998-10-25 09:41:42 +08:00
|
|
|
|
1998-11-22 12:22:28 +08:00
|
|
|
install-common: FORCE
|
1998-10-25 09:41:42 +08:00
|
|
|
|
|
|
|
lint: lint-local FORCE
|
|
|
|
$(LINT) $(DEFS) $(DEFINES) $(SRCS)
|
|
|
|
|
|
|
|
lint5: lint5-local FORCE
|
|
|
|
$(5LINT) $(DEFS) $(DEFINES) $(SRCS)
|
|
|
|
|
1998-11-22 12:22:28 +08:00
|
|
|
clean-common: FORCE
|
1998-12-19 09:27:20 +08:00
|
|
|
$(RM) $(LIBRARY) ../$(LIBRARY) $(XLIBRARY) \
|
1998-12-20 08:58:55 +08:00
|
|
|
$(PROGRAMS) $(XPROGRAMS) $(XSRCS) $(XXSRCS) \
|
1999-09-29 08:56:43 +08:00
|
|
|
*.o *.lo a.out core version.c .libs/* \
|
1999-10-28 15:31:59 +08:00
|
|
|
../`$(BASENAME) $(LIBRARY) .la`.so* \
|
|
|
|
../`$(BASENAME) $(LIBRARY) .la`*.dll *.exe
|
1998-10-25 09:41:42 +08:00
|
|
|
|
1998-11-22 12:22:28 +08:00
|
|
|
depend-common: FORCE
|
1998-12-20 08:58:55 +08:00
|
|
|
$(MKDEP) $(DEFS) $(DEFINES) $(SRCS) $(XXSRCS)
|
1998-10-25 09:41:42 +08:00
|
|
|
|
|
|
|
lint-local: FORCE
|
|
|
|
lint5-local: FORCE
|
|
|
|
|
|
|
|
Makefile: $(top_srcdir)/build/lib.mk
|