1999-08-31 09:17:01 +08:00
|
|
|
# $OpenLDAP$
|
1998-10-25 09:41:42 +08:00
|
|
|
## Copyright 1998 The OpenLDAP Foundation, All Rights Reserved.
|
|
|
|
## COPYING RESTRICTIONS APPLY, See COPYRIGHT file
|
|
|
|
##
|
|
|
|
## include Makefile.in for OpenLDAP
|
|
|
|
|
1999-06-17 11:54:25 +08:00
|
|
|
all-local: ldap_config.h FORCE
|
1998-10-25 09:41:42 +08:00
|
|
|
|
|
|
|
install-local: FORCE
|
1999-09-23 05:51:30 +08:00
|
|
|
-$(MKDIR) $(DESTDIR)$(includedir)
|
|
|
|
for header in $(srcdir)/lber.h lber_types.h $(srcdir)/ldap.h \
|
|
|
|
$(srcdir)/ldap_cdefs.h ldap_features.h $(srcdir)/ldap_schema.h \
|
|
|
|
$(srcdir)/disptmpl.h $(srcdir)/srchpref.h; do \
|
|
|
|
$(INSTALL) $(INSTALLFLAGS) -m 644 $$header $(DESTDIR)$(includedir); \
|
|
|
|
done
|
1998-10-25 09:41:42 +08:00
|
|
|
|
|
|
|
clean-local: FORCE
|
1999-06-17 11:54:25 +08:00
|
|
|
$(RM) ldap_config.h
|
1998-10-25 09:41:42 +08:00
|
|
|
|
|
|
|
veryclean-local: clean-local FORCE
|
1999-08-16 05:58:47 +08:00
|
|
|
$(RM) portable.h lber_types.h ldap_features.h
|
1998-10-25 09:41:42 +08:00
|
|
|
|
1999-06-17 11:54:25 +08:00
|
|
|
depend-local: ldap_config.h FORCE
|
1998-10-25 09:41:42 +08:00
|
|
|
|
1999-06-17 11:54:25 +08:00
|
|
|
LDAP_CONFIG=$(srcdir)/ldap_config.h.in
|
|
|
|
|
|
|
|
ldap_config.h: $(LDAP_CONFIG) Makefile
|
1998-10-25 09:41:42 +08:00
|
|
|
@$(RM) $@
|
1999-06-17 11:54:25 +08:00
|
|
|
@echo "Making $@"
|
|
|
|
@echo "/* Generated from $(LDAP_CONFIG) on `date` */" > $@; \
|
1998-10-25 09:41:42 +08:00
|
|
|
$(SED) \
|
|
|
|
-e 's;%SYSCONFDIR%;$(sysconfdir);' \
|
1998-11-30 03:48:28 +08:00
|
|
|
-e 's;%DATADIR%;$(datadir);' \
|
1998-10-25 09:41:42 +08:00
|
|
|
-e 's;%BINDIR%;$(bindir);' \
|
|
|
|
-e 's;%SBINDIR%;$(sbindir);' \
|
|
|
|
-e 's;%LIBEXECDIR%;$(libexecdir);' \
|
|
|
|
-e 's;%RUNDIR%;$(localstatedir);' \
|
|
|
|
-e 's;%EDITOR%;$(EDITOR);' \
|
|
|
|
-e 's;%FINGER%;$(FINGER);' \
|
|
|
|
-e 's;%SENDMAIL%;$(SENDMAIL);' \
|
1999-06-17 11:54:25 +08:00
|
|
|
$(LDAP_CONFIG) >> $@; \
|
1998-10-25 09:41:42 +08:00
|
|
|
$(CHMOD) 444 $@
|
|
|
|
|
|
|
|
all-common: all-local
|
|
|
|
install-common: all-common install-local
|
|
|
|
clean-common: clean-local
|
|
|
|
veryclean-common: veryclean-local
|
|
|
|
depend-common: depend-local
|