X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=include%2FMakefile.in;h=fd255d6cda4e1375eda38ab113c607adbe89c1b9;hb=860470169df6b88a27c97233f7f5a32d6d4f0e67;hp=23be05f6b0806e437683e5c4c586f2c548f7f660;hpb=fbcbf29651fb8154d74e49567d0a6213fbadb971;p=openldap diff --git a/include/Makefile.in b/include/Makefile.in index 23be05f6b0..fd255d6cda 100644 --- a/include/Makefile.in +++ b/include/Makefile.in @@ -1,37 +1,33 @@ -## Copyright 1998 The OpenLDAP Foundation, All Rights Reserved. +# $OpenLDAP$ +## Copyright 1998-2000 The OpenLDAP Foundation, All Rights Reserved. ## COPYING RESTRICTIONS APPLY, See COPYRIGHT file ## ## include Makefile.in for OpenLDAP -all-local: ldapconfig.h FORCE +all-local: ldap_config.h FORCE install-local: FORCE - -$(MKDIR) -p $(includedir) - $(INSTALL) $(INSTALLFLAGS) -m 644 $(srcdir)/ldap.h $(includedir) - $(INSTALL) $(INSTALLFLAGS) -m 644 $(srcdir)/lber.h $(includedir) - $(INSTALL) $(INSTALLFLAGS) -m 644 $(srcdir)/ldap_cdefs.h $(includedir) - $(INSTALL) $(INSTALLFLAGS) -m 644 $(srcdir)/disptmpl.h $(includedir) - $(INSTALL) $(INSTALLFLAGS) -m 644 $(srcdir)/srchpref.h $(includedir) - $(INSTALL) $(INSTALLFLAGS) -m 644 ldap_features.h $(includedir) - $(INSTALL) $(INSTALLFLAGS) -m 644 ldap_schema.h $(includedir) + -$(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 clean-local: FORCE - $(RM) ldapconfig.h + $(RM) ldap_config.h veryclean-local: clean-local FORCE - $(RM) portable.h ldap_features.h + $(RM) portable.h lber_types.h ldap_features.h -depend-local: ldapconfig.h FORCE +depend-local: ldap_config.h FORCE -ldapconfig.h: $(srcdir)/ldapconfig.h.edit Makefile +LDAP_CONFIG=$(srcdir)/ldap_config.h.in + +ldap_config.h: $(LDAP_CONFIG) Makefile @$(RM) $@ - @echo "Making ldapconfig.h" - @echo "/*" > $@; \ - echo " * This file was automatically generated. Do not edit it." >> $@; \ - echo " * Instead, edit the file ldapconfig.h.edit. See the LDAP" >> $@; \ - echo " * INSTALL file for more information." >> $@; \ - echo " */ " >> $@; \ - echo "" >> $@; \ + @echo "Making $@" + @echo "/* Generated from $(LDAP_CONFIG) on `date` */" > $@; \ $(SED) \ -e 's;%SYSCONFDIR%;$(sysconfdir);' \ -e 's;%DATADIR%;$(datadir);' \ @@ -42,7 +38,7 @@ ldapconfig.h: $(srcdir)/ldapconfig.h.edit Makefile -e 's;%EDITOR%;$(EDITOR);' \ -e 's;%FINGER%;$(FINGER);' \ -e 's;%SENDMAIL%;$(SENDMAIL);' \ - $(srcdir)/ldapconfig.h.edit >> $@; \ + $(LDAP_CONFIG) >> $@; \ $(CHMOD) 444 $@ all-common: all-local