]> git.sur5r.net Git - openldap/blobdiff - include/Makefile.in
Cleanup NT service support declarations
[openldap] / include / Makefile.in
index eb7ccd560d6628bc0047a8336622a321a7d0f657..7a846c8f24d9ba00a92f9804a33c0fd9cd0a5a67 100644 (file)
@@ -1,4 +1,5 @@
-## Copyright 1998 The OpenLDAP Foundation, All Rights Reserved.
+# $OpenLDAP$
+## Copyright 1998-2003 The OpenLDAP Foundation, All Rights Reserved.
 ## COPYING RESTRICTIONS APPLY, See COPYRIGHT file
 ##
 ## include Makefile.in for OpenLDAP
@@ -6,15 +7,14 @@
 all-local: ldap_config.h FORCE
 
 install-local: FORCE
-               -$(MKDIR) -p $(includedir)
-               $(INSTALL) $(INSTALLFLAGS) -m 644 $(srcdir)/lber.h $(includedir)
-               $(INSTALL) $(INSTALLFLAGS) -m 644 lber_types.h $(includedir)
-               $(INSTALL) $(INSTALLFLAGS) -m 644 $(srcdir)/ldap.h $(includedir)
-               $(INSTALL) $(INSTALLFLAGS) -m 644 $(srcdir)/ldap_cdefs.h $(includedir)
-               $(INSTALL) $(INSTALLFLAGS) -m 644 ldap_features.h $(includedir)
-               $(INSTALL) $(INSTALLFLAGS) -m 644 $(srcdir)/ldap_schema.h $(includedir)
-               $(INSTALL) $(INSTALLFLAGS) -m 644 $(srcdir)/disptmpl.h $(includedir)
-               $(INSTALL) $(INSTALLFLAGS) -m 644 $(srcdir)/srchpref.h $(includedir)
+       -$(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
 
 clean-local: FORCE 
        $(RM) ldap_config.h
@@ -30,16 +30,34 @@ ldap_config.h: $(LDAP_CONFIG) Makefile
        @$(RM) $@
        @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); \
+       fi; \
        $(SED) \
-                       -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;%EDITOR%;$(EDITOR);' \
-                       -e 's;%FINGER%;$(FINGER);' \
-                       -e 's;%SENDMAIL%;$(SENDMAIL);' \
+                       -e "s;%SYSCONFDIR%;$$sysconfdir;" \
+                       -e "s;%DATADIR%;$$datadir;" \
+                       -e "s;%BINDIR%;$$bindir;" \
+                       -e "s;%SBINDIR%;$$sbindir;" \
+                       -e "s;%LIBEXECDIR%;$$libexecdir;" \
+                       -e "s;%RUNDIR%;$$localstatedir;" \
                         $(LDAP_CONFIG) >> $@; \
        $(CHMOD) 444 $@
 
@@ -48,3 +66,4 @@ install-common:               all-common install-local
 clean-common:          clean-local
 veryclean-common:      veryclean-local
 depend-common:         depend-local
+