]> git.sur5r.net Git - openldap/blob - include/Makefile.in
Happy New Year!
[openldap] / include / Makefile.in
1 # include Makefile.in for OpenLDAP
2 # $OpenLDAP$
3 ## This work is part of OpenLDAP Software <http://www.openldap.org/>.
4 ##
5 ## Copyright 1998-2011 The OpenLDAP Foundation.
6 ## All rights reserved.
7 ##
8 ## Redistribution and use in source and binary forms, with or without
9 ## modification, are permitted only as authorized by the OpenLDAP
10 ## Public License.
11 ##
12 ## A copy of this license is available in the file LICENSE in the
13 ## top-level directory of the distribution or, alternatively, at
14 ## <http://www.OpenLDAP.org/license.html>.
15
16 all-local: ldap_config.h FORCE
17
18 install-local: FORCE
19         -$(MKDIR) $(DESTDIR)$(includedir)
20         for header in $(srcdir)/lber.h lber_types.h \
21                 $(srcdir)/ldap.h $(srcdir)/ldap_cdefs.h \
22                 $(srcdir)/ldap_schema.h $(srcdir)/ldap_utf8.h \
23                 $(srcdir)/slapi-plugin.h ldap_features.h; \
24         do \
25                 $(INSTALL) $(INSTALLFLAGS) -m 644 $$header $(DESTDIR)$(includedir); \
26         done
27
28 clean-local: FORCE 
29         $(RM) ldap_config.h
30
31 veryclean-local: clean-local FORCE
32         $(RM) portable.h lber_types.h ldap_features.h
33
34 depend-local: ldap_config.h FORCE
35
36 LDAP_CONFIG=$(srcdir)/ldap_config.hin
37
38 ldap_config.h: $(LDAP_CONFIG) Makefile
39         @$(RM) $@
40         @echo "Making $@"
41         @echo "/* Generated from $(LDAP_CONFIG) on `date` */" > $@;  \
42         if test $(PLAT) = NT; then \
43             sysconfdir=`cygpath -w $(sysconfdir) | \
44                 $(SED) -e 's/\\\\/\\\\\\\\\\\\\\\\/g'`; \
45             datadir=`cygpath -w $(datadir) | \
46                 $(SED) -e 's/\\\\/\\\\\\\\\\\\\\\\/g'`; \
47             bindir=`cygpath -w $(bindir) | \
48                 $(SED) -e 's/\\\\/\\\\\\\\\\\\\\\\/g'`; \
49             sbindir=`cygpath -w $(sbindir) | \
50                 $(SED) -e 's/\\\\/\\\\\\\\\\\\\\\\/g'`; \
51             libexecdir=`cygpath -w $(libexecdir) | \
52                 $(SED) -e 's/\\\\/\\\\\\\\\\\\\\\\/g'`; \
53             moduledir=`cygpath -w $(moduledir) | \
54                 $(SED) -e 's/\\\\/\\\\\\\\\\\\\\\\/g'`; \
55             localstatedir=`cygpath -w $(localstatedir) | \
56                 $(SED) -e 's/\\\\/\\\\\\\\\\\\\\\\/g'`; \
57         else \
58             sysconfdir=$(sysconfdir); \
59             datadir=$(datadir); \
60             bindir=$(bindir); \
61             sbindir=$(sbindir); \
62             libexecdir=$(libexecdir); \
63             moduledir=$(moduledir); \
64             localstatedir=$(localstatedir); \
65             localedir=$(localedir); \
66         fi; \
67         $(SED) \
68                         -e "s;%SYSCONFDIR%;$$sysconfdir;" \
69                         -e "s;%DATADIR%;$$datadir;" \
70                         -e "s;%BINDIR%;$$bindir;" \
71                         -e "s;%SBINDIR%;$$sbindir;" \
72                         -e "s;%LIBEXECDIR%;$$libexecdir;" \
73                         -e "s;%MODULEDIR%;$$moduledir;" \
74                         -e "s;%RUNDIR%;$$localstatedir;" \
75                         -e "s;%LOCALEDIR%;$$localedir;" \
76                          $(LDAP_CONFIG) >> $@; \
77         $(CHMOD) 444 $@
78
79 all-common:                     all-local
80 install-common:         all-common install-local
81 clean-common:           clean-local
82 veryclean-common:       veryclean-local
83 depend-common:          depend-local
84