openldap/include/Makefile.in

51 lines
1.6 KiB
Makefile
Raw Normal View History

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
all-local: ldap_config.h FORCE
1998-10-25 09:41:42 +08:00
install-local: FORCE
-$(MKDIR) -p $(includedir)
$(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)
$(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)
$(INSTALL) $(INSTALLFLAGS) -m 644 $(srcdir)/ldap_schema.h $(includedir)
$(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
$(RM) ldap_config.h
1998-10-25 09:41:42 +08:00
veryclean-local: clean-local FORCE
$(RM) portable.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` */" > $@; \
1998-10-25 09:41:42 +08:00
$(SED) \
-e 's;%SYSCONFDIR%;$(sysconfdir);' \
-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);' \
$(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