1 # include Makefile.in for OpenLDAP
2 # $OpenLDAP: pkg/ldap/include/Makefile.in,v 1.33.2.3 2008/02/11 23:26:40 kurt Exp $
3 ## This work is part of OpenLDAP Software <http://www.openldap.org/>.
5 ## Copyright 1998-2008 The OpenLDAP Foundation.
6 ## All rights reserved.
8 ## Redistribution and use in source and binary forms, with or without
9 ## modification, are permitted only as authorized by the OpenLDAP
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>.
16 all-local
: ldap_config.h 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
; \
25 $(INSTALL
) $(INSTALLFLAGS
) -m
644 $$header $(DESTDIR
)$(includedir); \
31 veryclean-local
: clean-local FORCE
32 $(RM
) portable.h lber_types.h ldap_features.h
34 depend-local
: ldap_config.h FORCE
36 LDAP_CONFIG
=$(srcdir)/ldap_config.hin
38 ldap_config.h
: $(LDAP_CONFIG
) Makefile
41 @echo
"/* Generated from $(LDAP_CONFIG) */" > $@
; \
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'`; \
58 sysconfdir
=$(sysconfdir
); \
62 libexecdir
=$(libexecdir
); \
63 moduledir
=$(moduledir
); \
64 localstatedir
=$(localstatedir
); \
65 localedir
=$(localedir
); \
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
) >> $@
; \
80 install-common
: all-common install-local
81 clean-common
: clean-local
82 veryclean-common
: veryclean-local
83 depend-common
: depend-local