openldap/build/lib.mk

37 lines
885 B
Makefile
Raw Normal View History

1999-08-30 04:08:00 -04:00
# $OpenLDAP$
2000-05-12 22:36:07 -04:00
## Copyright 1998-2000 The OpenLDAP Foundation
1998-12-28 14:58:57 -05:00
## COPYING RESTRICTIONS APPLY. See COPYRIGHT File in top level directory
## of this package for details.
1998-10-24 21:41:42 -04:00
##---------------------------------------------------------------------------
##
## Makefile Template for Libraries
##
all-common: $(LIBRARY) $(PROGRAMS)
1999-04-29 14:28:57 -04:00
version.c: $(OBJS)
1998-10-24 21:41:42 -04:00
$(RM) $@
1999-04-29 14:28:57 -04:00
$(MKVERSION) $(LIBRARY) > $@
1998-10-24 21:41:42 -04:00
install-common: FORCE
1998-10-24 21:41:42 -04:00
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}
1998-10-24 21:41:42 -04:00
depend-common: FORCE
$(MKDEP) $(DEFS) $(DEFINES) $(SRCS) $(XXSRCS)
1998-10-24 21:41:42 -04:00
lint-local: FORCE
lint5-local: FORCE
Makefile: $(top_srcdir)/build/lib.mk