openldap/build/lib.mk

46 lines
1.1 KiB
Makefile
Raw Normal View History

1999-08-30 16:08:00 +08:00
# $OpenLDAP$
2003-01-04 04:20:47 +08:00
## Copyright 1998-2003 The OpenLDAP Foundation
1998-12-29 03:58:57 +08:00
## 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)
2003-03-29 02:47:57 +08:00
version.c: Makefile
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
2003-03-29 17:03:46 +08:00
version.o version.lo: version.c $(OBJS)
2003-03-29 02:47:57 +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)
2001-12-07 12:03:25 +08:00
#
# In the mingw/cygwin environment, the so and dll files must be
# deleted separately, instead of using the {.so*,*.dll} construct
# that was previously used. It just didn't work.
#
clean-common: FORCE
$(RM) $(LIBRARY) ../$(LIBRARY) $(XLIBRARY) \
$(PROGRAMS) $(XPROGRAMS) $(XSRCS) $(XXSRCS) \
*.o *.lo a.out *.exe core version.c .libs/* \
2001-12-07 12:03:25 +08:00
../`$(BASENAME) $(LIBRARY) .la`.so* \
../`$(BASENAME) $(LIBRARY) .la`*.dll
1998-10-25 09:41:42 +08:00
depend-common: FORCE
$(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
2001-12-07 12:03:25 +08:00