Skip to content
Snippets Groups Projects
Makefile.in 1.35 KiB
Newer Older
Kurt Zeilenga's avatar
Kurt Zeilenga committed
# $OpenLDAP$
## 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

install-local: FORCE
	-$(MKDIR) $(DESTDIR)$(includedir)
	for header in $(srcdir)/lber.h lber_types.h $(srcdir)/ldap.h \
	  $(srcdir)/ldap_cdefs.h ldap_features.h $(srcdir)/ldap_schema.h \
	  $(srcdir)/disptmpl.h $(srcdir)/srchpref.h; do \
		$(INSTALL) $(INSTALLFLAGS) -m 644 $$header $(DESTDIR)$(includedir); \
	done

clean-local: FORCE 

veryclean-local: clean-local FORCE
	$(RM) portable.h lber_types.h ldap_features.h
depend-local: ldap_config.h FORCE
LDAP_CONFIG=$(srcdir)/ldap_config.h.in

ldap_config.h: $(LDAP_CONFIG) Makefile
	@$(RM) $@
	@echo "Making $@"
	@echo "/* Generated from $(LDAP_CONFIG) on `date` */" > $@;  \
	$(SED) \
			-e 's;%SYSCONFDIR%;$(sysconfdir);' \
Kurt Zeilenga's avatar
Kurt Zeilenga committed
			-e 's;%DATADIR%;$(datadir);' \
			-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) >> $@; \
	$(CHMOD) 444 $@

all-common:			all-local
install-common:		all-common install-local
clean-common:		clean-local
veryclean-common:	veryclean-local
depend-common:		depend-local