comparison src/Makefile @ 798:95dac6af3b3a v7.0232

updated for version 7.0232
author vimboss
date Thu, 23 Mar 2006 22:59:57 +0000
parents 335444c09581
children 6beb2c667935
comparison
equal deleted inserted replaced
797:a1a08851eac8 798:95dac6af3b3a
1855 1855
1856 # Install the spell files, if they exist. This assumes at least the English 1856 # Install the spell files, if they exist. This assumes at least the English
1857 # spell file is there. 1857 # spell file is there.
1858 installspell: $(DEST_VIM) $(DEST_RT) $(DEST_SPELL) 1858 installspell: $(DEST_VIM) $(DEST_RT) $(DEST_SPELL)
1859 if test -f $(SPELLSOURCE)/en.latin1.spl; then \ 1859 if test -f $(SPELLSOURCE)/en.latin1.spl; then \
1860 $(INSTALL_DATA) $(SPELLSOURCE)/*.spl $(SPELLSOURCE)/*.vim $(DEST_SPELL); \ 1860 $(INSTALL_DATA) $(SPELLSOURCE)/*.spl $(SPELLSOURCE)/*.sug $(SPELLSOURCE)/*.vim $(DEST_SPELL); \
1861 chmod $(HELPMOD) $(DEST_SPELL)/*.spl $(DEST_SPELL)/*.vim; \ 1861 chmod $(HELPMOD) $(DEST_SPELL)/*.spl $(DEST_SPELL)/*.sug $(DEST_SPELL)/*.vim; \
1862 fi 1862 fi
1863 1863
1864 # install helper program xxd 1864 # install helper program xxd
1865 installtools: $(TOOLS) $(DESTDIR)$(exec_prefix) $(DEST_BIN) \ 1865 installtools: $(TOOLS) $(DESTDIR)$(exec_prefix) $(DEST_BIN) \
1866 $(TOOLSSOURCE) $(DEST_VIM) $(DEST_RT) $(DEST_TOOLS) \ 1866 $(TOOLSSOURCE) $(DEST_VIM) $(DEST_RT) $(DEST_TOOLS) \
2027 cd $(DEST_BIN); ln -s $(VIMTARGET) $(EVIMTARGET) 2027 cd $(DEST_BIN); ln -s $(VIMTARGET) $(EVIMTARGET)
2028 2028
2029 $(DEST_BIN)/$(EVIEWTARGET): 2029 $(DEST_BIN)/$(EVIEWTARGET):
2030 cd $(DEST_BIN); ln -s $(VIMTARGET) $(EVIEWTARGET) 2030 cd $(DEST_BIN); ln -s $(VIMTARGET) $(EVIEWTARGET)
2031 2031
2032 # create links for the manual pages with various names to vim. This is only 2032 # Create links for the manual pages with various names to vim. This is only
2033 # done when the links (or manpages with the same name) don't exist yet. 2033 # done when the links (or manpages with the same name) don't exist yet.
2034 2034
2035 INSTALLMLARGS = $(VIMNAME) $(VIMDIFFNAME) $(EVIMNAME) \ 2035 INSTALLMLARGS = $(VIMNAME) $(VIMDIFFNAME) $(EVIMNAME) \
2036 $(EXNAME) $(VIEWNAME) $(RVIMNAME) $(RVIEWNAME) \ 2036 $(EXNAME) $(VIEWNAME) $(RVIMNAME) $(RVIEWNAME) \
2037 $(GVIMNAME) $(GVIEWNAME) $(RGVIMNAME) $(RGVIEWNAME) \ 2037 $(GVIMNAME) $(GVIEWNAME) $(RGVIMNAME) $(RGVIEWNAME) \
2518 2518
2519 install_macosx: gui_bundle 2519 install_macosx: gui_bundle
2520 # Remove the link to the runtime dir, don't want to copy all of that. 2520 # Remove the link to the runtime dir, don't want to copy all of that.
2521 -rm $(RESDIR)/vim/runtime 2521 -rm $(RESDIR)/vim/runtime
2522 $(INSTALL_DATA_R) $(APPDIR) $(DESTDIR)$(prefix) 2522 $(INSTALL_DATA_R) $(APPDIR) $(DESTDIR)$(prefix)
2523 # Generate the help tags file now, it won't work with "make installruntime".
2524 -@srcdir=`pwd`; cd $(HELPSOURCE); $(MAKE) VIMEXE=$$srcdir/$(VIMTARGET) vimtags
2523 # Install the runtime files. Recursive! 2525 # Install the runtime files. Recursive!
2524 -mkdir -p $(DESTDIR)$(prefix)/$(RESDIR)/vim/runtime 2526 -mkdir -p $(DESTDIR)$(prefix)/$(RESDIR)/vim/runtime
2525 # -mkdir $(DESTDIR)$(prefix)/$(APPDIR)/bin 2527 # -mkdir $(DESTDIR)$(prefix)/$(APPDIR)/bin
2526 srcdir=`pwd`; $(MAKE) -f Makefile installruntime \ 2528 srcdir=`pwd`; $(MAKE) -f Makefile installruntime \
2527 VIMEXE=$$srcdir/$(VIMTARGET) \ 2529 VIMEXE=$$srcdir/$(VIMTARGET) \
2536 2538
2537 $(RESDIR): 2539 $(RESDIR):
2538 mkdir -p $@ 2540 mkdir -p $@
2539 2541
2540 bundle-dir: $(APPDIR)/Contents $(VIMTARGET) 2542 bundle-dir: $(APPDIR)/Contents $(VIMTARGET)
2541 -@srcdir=`pwd`; cd $(HELPSOURCE); $(MAKE) VIMEXE=$$srcdir/$(VIMTARGET) vimtags
2542 # Make a link to the runtime directory, so that we can try out the executable 2543 # Make a link to the runtime directory, so that we can try out the executable
2543 # without installing it. 2544 # without installing it.
2544 mkdir -p $(RESDIR)/vim 2545 mkdir -p $(RESDIR)/vim
2545 -ln -s `pwd`/../runtime $(RESDIR)/vim 2546 -ln -s `pwd`/../runtime $(RESDIR)/vim
2546 2547