1998-10-25 09:41:42 +08:00
|
|
|
## Copyright 1998 The OpenLDAP Foundation, All Rights Reserved.
|
|
|
|
## COPYING RESTRICTIONS APPLY, See COPYRIGHT file
|
|
|
|
##
|
|
|
|
## include Makefile.in for OpenLDAP
|
|
|
|
|
1999-06-17 11:54:25 +08:00
|
|
|
all-local: ldap_config.h FORCE
|
1998-10-25 09:41:42 +08:00
|
|
|
|
|
|
|
install-local: FORCE
|
|
|
|
-$(MKDIR) -p $(includedir)
|
1999-01-10 10:25:41 +08:00
|
|
|
$(INSTALL) $(INSTALLFLAGS) -m 644 $(srcdir)/lber.h $(includedir)
|
1999-06-25 22:41:10 +08:00
|
|
|
$(INSTALL) $(INSTALLFLAGS) -m 644 lber_types.h $(includedir)
|
|
|
|
$(INSTALL) $(INSTALLFLAGS) -m 644 $(srcdir)/ldap.h $(includedir)
|
1999-01-10 10:25:41 +08:00
|
|
|
$(INSTALL) $(INSTALLFLAGS) -m 644 $(srcdir)/ldap_cdefs.h $(includedir)
|
1999-06-25 22:41:10 +08:00
|
|
|
$(INSTALL) $(INSTALLFLAGS) -m 644 ldap_features.h $(includedir)
|
1999-06-08 02:37:16 +08:00
|
|
|
$(INSTALL) $(INSTALLFLAGS) -m 644 $(srcdir)/ldap_schema.h $(includedir)
|
1999-01-10 10:25:41 +08:00
|
|
|
$(INSTALL) $(INSTALLFLAGS) -m 644 $(srcdir)/disptmpl.h $(includedir)
|
|
|
|
$(INSTALL) $(INSTALLFLAGS) -m 644 $(srcdir)/srchpref.h $(includedir)
|
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
|
1998-11-22 12:22:28 +08:00
|
|
|
$(RM) portable.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
|
|
|
|
1999-06-17 11:54:25 +08:00
|
|
|
LDAP_CONFIG=$(srcdir)/ldap_config.h.in
|
|
|
|
|
|
|
|
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` */" > $@; \
|
1998-10-25 09:41:42 +08:00
|
|
|
$(SED) \
|
|
|
|
-e 's;%SYSCONFDIR%;$(sysconfdir);' \
|
1998-11-30 03:48:28 +08:00
|
|
|
-e 's;%DATADIR%;$(datadir);' \
|
1998-10-25 09:41:42 +08:00
|
|
|
-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);' \
|
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
|