X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=include%2FMakefile.in;h=1974393cf500fc02e3156efdfdd1e8c8b1ab3568;hb=4fcab959c02ef360373e055f8a739f16286e8112;hp=c6a4e7c505ed84bcee3cf3f67381bb3d1f83e1f6;hpb=2f7d0a230a00a710569090e8e9f33a35a34edf90;p=openldap diff --git a/include/Makefile.in b/include/Makefile.in index c6a4e7c505..1974393cf5 100644 --- a/include/Makefile.in +++ b/include/Makefile.in @@ -1,40 +1,80 @@ -## Copyright 1998 Net Boolean Incorporated -## COPYING RESTRICTIONS APPLY, See COPYING file +# include Makefile.in for OpenLDAP +# $OpenLDAP$ +## This work is part of OpenLDAP Software . ## -## include Makefile.in for OpenLDAP +## Copyright 1998-2005 The OpenLDAP Foundation. +## All rights reserved. +## +## Redistribution and use in source and binary forms, with or without +## modification, are permitted only as authorized by the OpenLDAP +## Public License. +## +## A copy of this license is available in the file LICENSE in the +## top-level directory of the distribution or, alternatively, at +## . + +all-local: ldap_config.h FORCE -install: all FORCE - -$(MKDIR) -p $(includedir) - $(INSTALL) $(INSTALLFLAGS) -m 644 ldap.h $(includedir) - $(INSTALL) $(INSTALLFLAGS) -m 644 lber.h $(includedir) - $(INSTALL) $(INSTALLFLAGS) -m 644 proto-lber.h $(includedir) - $(INSTALL) $(INSTALLFLAGS) -m 644 proto-ldap.h $(includedir) - $(INSTALL) $(INSTALLFLAGS) -m 644 disptmpl.h $(includedir) - $(INSTALL) $(INSTALLFLAGS) -m 644 srchpref.h $(includedir) +install-local: FORCE + -$(MKDIR) $(DESTDIR)$(includedir) + for header in $(srcdir)/lber.h lber_types.h \ + $(srcdir)/ldap.h $(srcdir)/ldap_cdefs.h \ + $(srcdir)/ldap_schema.h $(srcdir)/ldap_utf8.h \ + $(srcdir)/slapi-plugin.h ldap_features.h; \ + do \ + $(INSTALL) $(INSTALLFLAGS) -m 644 $$header $(DESTDIR)$(includedir); \ + done -all: ldapconfig.h FORCE +clean-local: FORCE + $(RM) ldap_config.h -clean: FORCE -veryclean: FORCE -depend: FORCE +veryclean-local: clean-local FORCE + $(RM) portable.h lber_types.h ldap_features.h -ldapconfig.h: ldapconfig.h.edit Makefile +depend-local: ldap_config.h FORCE + +LDAP_CONFIG=$(srcdir)/ldap_config.h.in + +ldap_config.h: $(LDAP_CONFIG) Makefile @$(RM) $@ - @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` */" > $@; \ + if test $(PLAT) = NT; then \ + sysconfdir=`cygpath -w $(sysconfdir) | \ + $(SED) -e 's/\\\\/\\\\\\\\\\\\\\\\/g'`; \ + datadir=`cygpath -w $(datadir) | \ + $(SED) -e 's/\\\\/\\\\\\\\\\\\\\\\/g'`; \ + bindir=`cygpath -w $(bindir) | \ + $(SED) -e 's/\\\\/\\\\\\\\\\\\\\\\/g'`; \ + sbindir=`cygpath -w $(sbindir) | \ + $(SED) -e 's/\\\\/\\\\\\\\\\\\\\\\/g'`; \ + libexecdir=`cygpath -w $(libexecdir) | \ + $(SED) -e 's/\\\\/\\\\\\\\\\\\\\\\/g'`; \ + localstatedir=`cygpath -w $(localstatedir) | \ + $(SED) -e 's/\\\\/\\\\\\\\\\\\\\\\/g'`; \ + else \ + sysconfdir=$(sysconfdir); \ + datadir=$(datadir); \ + bindir=$(bindir); \ + sbindir=$(sbindir); \ + libexecdir=$(libexecdir); \ + localstatedir=$(localstatedir); \ + localedir=$(localedir); \ + fi; \ $(SED) \ - -e 's;%SYSCONFDIR%;$(sysconfdir);' \ - -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);' \ - ldapconfig.h.edit >> $@; \ + -e "s;%SYSCONFDIR%;$$sysconfdir;" \ + -e "s;%DATADIR%;$$datadir;" \ + -e "s;%BINDIR%;$$bindir;" \ + -e "s;%SBINDIR%;$$sbindir;" \ + -e "s;%LIBEXECDIR%;$$libexecdir;" \ + -e "s;%RUNDIR%;$$localstatedir;" \ + -e "s;%LOCALEDIR%;$$localedir;" \ + $(LDAP_CONFIG) >> $@; \ $(CHMOD) 444 $@ +all-common: all-local +install-common: all-common install-local +clean-common: clean-local +veryclean-common: veryclean-local +depend-common: depend-local +