2003-11-26 10:58:56 +08:00
|
|
|
# include Makefile.in for OpenLDAP
|
1999-08-31 09:17:01 +08:00
|
|
|
# $OpenLDAP$
|
2003-11-26 15:16:36 +08:00
|
|
|
## This work is part of OpenLDAP Software <http://www.openldap.org/>.
|
|
|
|
##
|
2016-01-30 03:32:05 +08:00
|
|
|
## Copyright 1998-2016 The OpenLDAP Foundation.
|
2003-11-26 10:58:56 +08:00
|
|
|
## All rights reserved.
|
1998-10-25 09:41:42 +08:00
|
|
|
##
|
2003-11-26 10:58:56 +08:00
|
|
|
## Redistribution and use in source and binary forms, with or without
|
|
|
|
## modification, are permitted only as authorized by the OpenLDAP
|
|
|
|
## Public License.
|
|
|
|
##
|
|
|
|
## A copy of this license is available in the file LICENSE in the
|
|
|
|
## top-level directory of the distribution or, alternatively, at
|
|
|
|
## <http://www.OpenLDAP.org/license.html>.
|
1998-10-25 09:41:42 +08:00
|
|
|
|
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
|
1999-09-23 05:51:30 +08:00
|
|
|
-$(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 \
|
2010-04-12 10:01:55 +08:00
|
|
|
$(srcdir)/slapi-plugin.h ldap_features.h \
|
|
|
|
$(srcdir)/ldif.h ; \
|
2001-06-14 13:55:43 +08:00
|
|
|
do \
|
1999-09-23 05:51:30 +08:00
|
|
|
$(INSTALL) $(INSTALLFLAGS) -m 644 $$header $(DESTDIR)$(includedir); \
|
|
|
|
done
|
1998-10-25 09:41:42 +08:00
|
|
|
|
|
|
|
clean-local: FORCE
|
1999-06-17 11:54:25 +08:00
|
|
|
$(RM) ldap_config.h
|
1998-10-25 09:41:42 +08:00
|
|
|
|
|
|
|
veryclean-local: clean-local FORCE
|
1999-08-16 05:58:47 +08:00
|
|
|
$(RM) portable.h lber_types.h ldap_features.h
|
1998-10-25 09:41:42 +08:00
|
|
|
|
1999-06-17 11:54:25 +08:00
|
|
|
depend-local: ldap_config.h FORCE
|
1998-10-25 09:41:42 +08:00
|
|
|
|
2005-08-12 14:52:49 +08:00
|
|
|
LDAP_CONFIG=$(srcdir)/ldap_config.hin
|
1999-06-17 11:54:25 +08:00
|
|
|
|
|
|
|
ldap_config.h: $(LDAP_CONFIG) Makefile
|
1998-10-25 09:41:42 +08:00
|
|
|
@$(RM) $@
|
1999-06-17 11:54:25 +08:00
|
|
|
@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'`; \
|
2007-06-11 05:55:39 +08:00
|
|
|
moduledir=`cygpath -w $(moduledir) | \
|
|
|
|
$(SED) -e 's/\\\\/\\\\\\\\\\\\\\\\/g'`; \
|
2001-12-07 12:03:25 +08:00
|
|
|
localstatedir=`cygpath -w $(localstatedir) | \
|
|
|
|
$(SED) -e 's/\\\\/\\\\\\\\\\\\\\\\/g'`; \
|
|
|
|
else \
|
|
|
|
sysconfdir=$(sysconfdir); \
|
|
|
|
datadir=$(datadir); \
|
|
|
|
bindir=$(bindir); \
|
|
|
|
sbindir=$(sbindir); \
|
|
|
|
libexecdir=$(libexecdir); \
|
2007-06-11 05:55:39 +08:00
|
|
|
moduledir=$(moduledir); \
|
2001-12-07 12:03:25 +08:00
|
|
|
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;" \
|
2007-06-11 05:55:39 +08:00
|
|
|
-e "s;%MODULEDIR%;$$moduledir;" \
|
2001-12-07 12:03:25 +08:00
|
|
|
-e "s;%RUNDIR%;$$localstatedir;" \
|
2003-04-06 04:49:16 +08:00
|
|
|
-e "s;%LOCALEDIR%;$$localedir;" \
|
1999-06-17 11:54:25 +08:00
|
|
|
$(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
|
|
|
|