X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=include%2FMakefile.in;h=2fc4e8b936af9fdcd5902e68a09527d503491472;hb=34c945b86d995d762826f90b24f51189ba1d8af3;hp=68cac9710bda51772f4c24cb9986305e90f3f8d6;hpb=0d680845afcd65a18428f83b0274b70daa640bcd;p=openldap diff --git a/include/Makefile.in b/include/Makefile.in index 68cac9710b..2fc4e8b936 100644 --- a/include/Makefile.in +++ b/include/Makefile.in @@ -3,31 +3,33 @@ ## ## include Makefile.in for OpenLDAP -install: all FORCE +all-local: ldapconfig.h FORCE + +install-local: FORCE -$(MKDIR) -p $(includedir) $(INSTALL) $(INSTALLFLAGS) -m 644 ldap.h $(includedir) $(INSTALL) $(INSTALLFLAGS) -m 644 lber.h $(includedir) - $(INSTALL) $(INSTALLFLAGS) -m 644 proto-lber.h $(includedir) - $(INSTALL) $(INSTALLFLAGS) -m 644 proto-ldap.h $(includedir) + $(INSTALL) $(INSTALLFLAGS) -m 644 ldap_cdefs.h $(includedir) $(INSTALL) $(INSTALLFLAGS) -m 644 disptmpl.h $(includedir) $(INSTALL) $(INSTALLFLAGS) -m 644 srchpref.h $(includedir) -all: ldapconfig.h FORCE - -clean: FORCE +clean-local: FORCE $(RM) ldapconfig.h -veryclean: clean FORCE -depend: FORCE +veryclean-local: clean-local FORCE + $(RM) portable.h + +depend-local: ldapconfig.h FORCE -ldapconfig.h: ldapconfig.h.edit Makefile +ldapconfig.h: $(srcdir)/ldapconfig.h.edit Makefile @$(RM) $@ + @echo "Making ldapconfig.h" @echo "/*" > $@; \ - echo " * This file was automatically generated. Do not edit it." >> $@; \ - echo " * Instead, edit the file ldapconfig.h.edit. See the LDAP" >> $@; \ - echo " * INSTALL file for more information." >> $@; \ - echo " */ " >> $@; \ - echo "" >> $@; \ + echo " * This file was automatically generated. Do not edit it." >> $@; \ + echo " * Instead, edit the file ldapconfig.h.edit. See the LDAP" >> $@; \ + echo " * INSTALL file for more information." >> $@; \ + echo " */ " >> $@; \ + echo "" >> $@; \ $(SED) \ -e 's;%SYSCONFDIR%;$(sysconfdir);' \ -e 's;%BINDIR%;$(bindir);' \ @@ -37,6 +39,11 @@ ldapconfig.h: ldapconfig.h.edit Makefile -e 's;%EDITOR%;$(EDITOR);' \ -e 's;%FINGER%;$(FINGER);' \ -e 's;%SENDMAIL%;$(SENDMAIL);' \ - ldapconfig.h.edit >> $@; \ + $(srcdir)/ldapconfig.h.edit >> $@; \ $(CHMOD) 444 $@ +all-common: all-local +install-common: all-common install-local +clean-common: clean-local +veryclean-common: veryclean-local +depend-common: depend-local