openldap/include/Makefile.in

72 lines
2.1 KiB
Makefile
Raw Normal View History

1999-08-31 09:17:01 +08:00
# $OpenLDAP$
2003-01-04 04:20:47 +08:00
## Copyright 1998-2003 The OpenLDAP Foundation, All Rights Reserved.
1998-10-25 09:41:42 +08:00
## COPYING RESTRICTIONS APPLY, See COPYRIGHT file
##
## include Makefile.in for OpenLDAP
2003-03-31 13:48:52 +08:00
all-local: ldap_config.h FORCE
1998-10-25 09:41:42 +08:00
install-local: FORCE
-$(MKDIR) $(DESTDIR)$(includedir)
2001-06-14 13:55:43 +08:00
for header in $(srcdir)/lber.h lber_types.h \
$(srcdir)/ldap.h $(srcdir)/ldap_cdefs.h \
$(srcdir)/ldap_schema.h $(srcdir)/ldap_utf8.h \
2002-12-08 03:00:34 +08:00
$(srcdir)/slapi-plugin.h ldap_features.h; \
2001-06-14 13:55:43 +08:00
do \
$(INSTALL) $(INSTALLFLAGS) -m 644 $$header $(DESTDIR)$(includedir); \
done
1998-10-25 09:41:42 +08:00
clean-local: FORCE
$(RM) ldap_config.h
1998-10-25 09:41:42 +08:00
veryclean-local: clean-local FORCE
$(RM) portable.h lber_types.h ldap_features.h
1998-10-25 09:41:42 +08:00
depend-local: ldap_config.h FORCE
1998-10-25 09:41:42 +08:00
LDAP_CONFIG=$(srcdir)/ldap_config.h.in
ldap_config.h: $(LDAP_CONFIG) Makefile
1998-10-25 09:41:42 +08:00
@$(RM) $@
@echo "Making $@"
@echo "/* Generated from $(LDAP_CONFIG) on `date` */" > $@; \
2001-12-07 12:03:25 +08:00
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); \
2003-04-06 04:49:16 +08:00
localedir=$(localedir); \
2001-12-07 12:03:25 +08:00
fi; \
1998-10-25 09:41:42 +08:00
$(SED) \
2001-12-07 12:03:25 +08:00
-e "s;%SYSCONFDIR%;$$sysconfdir;" \
-e "s;%DATADIR%;$$datadir;" \
-e "s;%BINDIR%;$$bindir;" \
-e "s;%SBINDIR%;$$sbindir;" \
-e "s;%LIBEXECDIR%;$$libexecdir;" \
-e "s;%RUNDIR%;$$localstatedir;" \
2003-04-06 04:49:16 +08:00
-e "s;%LOCALEDIR%;$$localedir;" \
$(LDAP_CONFIG) >> $@; \
1998-10-25 09:41:42 +08:00
$(CHMOD) 444 $@
all-common: all-local
install-common: all-common install-local
clean-common: clean-local
veryclean-common: veryclean-local
depend-common: depend-local
2001-12-07 12:03:25 +08:00