X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=include%2FMakefile.in;h=2fc4e8b936af9fdcd5902e68a09527d503491472;hb=34c945b86d995d762826f90b24f51189ba1d8af3;hp=ee55bb6956d110d035c41edb7fc58d98cf5310bc;hpb=1bee2718594b422848ed98d5848ec7349a3dc949;p=openldap diff --git a/include/Makefile.in b/include/Makefile.in index ee55bb6956..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: ldapconfig.h 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