]> git.sur5r.net Git - openldap/blobdiff - include/Makefile.in
Kill off #elif in ldap/include/. K&R does not support it.
[openldap] / include / Makefile.in
index c23de8a47fa2c05cf232c5085c76b9c3b7198e80..f3cb2013c31c79eae8ff54f5d72f29ef42f80d42 100644 (file)
@@ -1,18 +1,50 @@
-#
-# Makefile.in for OpenLDAP include directory
-#
+## Copyright 1998 The OpenLDAP Foundation, All Rights Reserved.
+## COPYING RESTRICTIONS APPLY, See COPYRIGHT file
+##
+## include Makefile.in for OpenLDAP
 
-install: all FORCE
+all-local: ldapconfig.h FORCE
+
+install-local: 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 ldap_cdefs.h $(includedir)
+               $(INSTALL) $(INSTALLFLAGS) -m 644 ldap_features.h $(includedir)
                $(INSTALL) $(INSTALLFLAGS) -m 644 disptmpl.h $(includedir)
                $(INSTALL) $(INSTALLFLAGS) -m 644 srchpref.h $(includedir)
 
-all: FORCE
-clean: FORCE 
-veryclean: FORCE
-depend: FORCE
+clean-local: FORCE 
+       $(RM) ldapconfig.h
+
+veryclean-local: clean-local FORCE
+       $(RM) portable.h
+
+depend-local: ldapconfig.h FORCE
+
+ldapconfig.h: $(srcdir)/ldapconfig.h.edit 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 "" >> $@; \
+       $(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);' \
+                        $(srcdir)/ldapconfig.h.edit >> $@; \
+       $(CHMOD) 444 $@
 
+all-common:                    all-local
+install-common:                all-common install-local
+clean-common:          clean-local
+veryclean-common:      veryclean-local
+depend-common:         depend-local