mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-15 03:01:09 +08:00
39 lines
1021 B
Makefile
39 lines
1021 B
Makefile
## Copyright 1998,1999 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) $(srcdir)/Version.c
|
|
$(RM) $@
|
|
(u=$${USER-root} v=`$(CAT) $(VERSIONFILE)` d=`$(PWD)` \
|
|
h=`$(HOSTNAME)` t=`$(DATE)`; $(SED) -e "s|%WHEN%|$${t}|" \
|
|
-e "s|%WHOANDWHERE%|$${u}@$${h}:$${d}|" \
|
|
-e "s|%VERSION%|$${v}|" \
|
|
< $(srcdir)/Version.c > $@)
|
|
|
|
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 core version.c .libs/*
|
|
|
|
depend-common: FORCE
|
|
$(MKDEP) $(DEFS) $(DEFINES) $(SRCS) $(XXSRCS)
|
|
|
|
lint-local: FORCE
|
|
lint5-local: FORCE
|
|
|
|
Makefile: $(top_srcdir)/build/lib.mk
|