comparison src/Makefile @ 221:7fd4b5df33be

updated for version 7.0062
author vimboss
date Sun, 20 Mar 2005 22:37:15 +0000
parents da182deebec7
children fca8a9b65afa
comparison
equal deleted inserted replaced
220:01e77186b20a 221:7fd4b5df33be
123 # runtime files 123 # runtime files
124 # make installlinks only installs the Vim binary links 124 # make installlinks only installs the Vim binary links
125 # make installmanlinks only installs the Vim manpage links 125 # make installmanlinks only installs the Vim manpage links
126 # make installmacros only installs the Vim macros 126 # make installmacros only installs the Vim macros
127 # make installtutor only installs the Vim tutor 127 # make installtutor only installs the Vim tutor
128 # make installspell only installs the spell files
128 # make installtools only installs xxd 129 # make installtools only installs xxd
129 # If you install Vim, not to install for real but to prepare a package 130 # If you install Vim, not to install for real but to prepare a package
130 # or RPM, set DESTDIR to the root of the tree. 131 # or RPM, set DESTDIR to the root of the tree.
131 # 132 #
132 # 6. Use Vim until a new version comes out. {{{1 133 # 6. Use Vim until a new version comes out. {{{1
872 COMPSUBDIR = /compiler 873 COMPSUBDIR = /compiler
873 KMAPSUBDIR = /keymap 874 KMAPSUBDIR = /keymap
874 MACROSUBDIR = /macros 875 MACROSUBDIR = /macros
875 TOOLSSUBDIR = /tools 876 TOOLSSUBDIR = /tools
876 TUTORSUBDIR = /tutor 877 TUTORSUBDIR = /tutor
878 SPELLSUBDIR = /spell
877 PRINTSUBDIR = /print 879 PRINTSUBDIR = /print
878 PODIR = po 880 PODIR = po
879 881
880 ### VIMLOC common root of the Vim files (all versions) 882 ### VIMLOC common root of the Vim files (all versions)
881 ### VIMRTLOC common root of the runtime Vim files (this version) 883 ### VIMRTLOC common root of the runtime Vim files (this version)
891 ### COMPSUBLOC location for compiler files 893 ### COMPSUBLOC location for compiler files
892 ### KMAPSUBLOC location for keymap files 894 ### KMAPSUBLOC location for keymap files
893 ### MACROSUBLOC location for macro files 895 ### MACROSUBLOC location for macro files
894 ### TOOLSSUBLOC location for tools files 896 ### TOOLSSUBLOC location for tools files
895 ### TUTORSUBLOC location for tutor files 897 ### TUTORSUBLOC location for tutor files
898 ### SPELLSUBLOC location for spell files
896 ### PRINTSUBLOC location for PostScript files (prolog, latin1, ..) 899 ### PRINTSUBLOC location for PostScript files (prolog, latin1, ..)
897 ### SCRIPTLOC location for script files (menu.vim, bugreport.vim, ..) 900 ### SCRIPTLOC location for script files (menu.vim, bugreport.vim, ..)
898 ### You can override these if you want to install them somewhere else. 901 ### You can override these if you want to install them somewhere else.
899 ### Edit feature.h for compile-time settings. 902 ### Edit feature.h for compile-time settings.
900 VIMLOC = $(DATADIR)$(VIMDIR) 903 VIMLOC = $(DATADIR)$(VIMDIR)
910 COMPSUBLOC = $(VIMRTLOC)$(COMPSUBDIR) 913 COMPSUBLOC = $(VIMRTLOC)$(COMPSUBDIR)
911 KMAPSUBLOC = $(VIMRTLOC)$(KMAPSUBDIR) 914 KMAPSUBLOC = $(VIMRTLOC)$(KMAPSUBDIR)
912 MACROSUBLOC = $(VIMRTLOC)$(MACROSUBDIR) 915 MACROSUBLOC = $(VIMRTLOC)$(MACROSUBDIR)
913 TOOLSSUBLOC = $(VIMRTLOC)$(TOOLSSUBDIR) 916 TOOLSSUBLOC = $(VIMRTLOC)$(TOOLSSUBDIR)
914 TUTORSUBLOC = $(VIMRTLOC)$(TUTORSUBDIR) 917 TUTORSUBLOC = $(VIMRTLOC)$(TUTORSUBDIR)
918 SPELLSUBLOC = $(VIMRTLOC)$(SPELLSUBDIR)
915 PRINTSUBLOC = $(VIMRTLOC)$(PRINTSUBDIR) 919 PRINTSUBLOC = $(VIMRTLOC)$(PRINTSUBDIR)
916 SCRIPTLOC = $(VIMRTLOC) 920 SCRIPTLOC = $(VIMRTLOC)
917 921
918 ### Only set VIMRUNTIMEDIR when VIMRTLOC is set to a different location and 922 ### Only set VIMRUNTIMEDIR when VIMRTLOC is set to a different location and
919 ### the runtime directory is not below it. 923 ### the runtime directory is not below it.
1013 # Where to copy the tools files from 1017 # Where to copy the tools files from
1014 TOOLSSOURCE = ../runtime/tools 1018 TOOLSSOURCE = ../runtime/tools
1015 1019
1016 # Where to copy the tutor files from 1020 # Where to copy the tutor files from
1017 TUTORSOURCE = ../runtime/tutor 1021 TUTORSOURCE = ../runtime/tutor
1022
1023 # Where to copy the spell files from
1024 SPELLSOURCE = ../runtime/spell
1018 1025
1019 # Where to look for language specific files 1026 # Where to look for language specific files
1020 LANGSOURCE = ../runtime/lang 1027 LANGSOURCE = ../runtime/lang
1021 1028
1022 # Where to look for compiler files 1029 # Where to look for compiler files
1273 DEST_COMP = $(DESTDIR)$(COMPSUBLOC) 1280 DEST_COMP = $(DESTDIR)$(COMPSUBLOC)
1274 DEST_KMAP = $(DESTDIR)$(KMAPSUBLOC) 1281 DEST_KMAP = $(DESTDIR)$(KMAPSUBLOC)
1275 DEST_MACRO = $(DESTDIR)$(MACROSUBLOC) 1282 DEST_MACRO = $(DESTDIR)$(MACROSUBLOC)
1276 DEST_TOOLS = $(DESTDIR)$(TOOLSSUBLOC) 1283 DEST_TOOLS = $(DESTDIR)$(TOOLSSUBLOC)
1277 DEST_TUTOR = $(DESTDIR)$(TUTORSUBLOC) 1284 DEST_TUTOR = $(DESTDIR)$(TUTORSUBLOC)
1285 DEST_SPELL = $(DESTDIR)$(SPELLSUBLOC)
1278 DEST_SCRIPT = $(DESTDIR)$(SCRIPTLOC) 1286 DEST_SCRIPT = $(DESTDIR)$(SCRIPTLOC)
1279 DEST_PRINT = $(DESTDIR)$(PRINTSUBLOC) 1287 DEST_PRINT = $(DESTDIR)$(PRINTSUBLOC)
1280 DEST_MAN_TOP = $(DESTDIR)$(MANDIR) 1288 DEST_MAN_TOP = $(DESTDIR)$(MANDIR)
1281 1289
1282 # We assume that the ".../man/xx/man1/" directory is for latin1 manual pages. 1290 # We assume that the ".../man/xx/man1/" directory is for latin1 manual pages.
1283 # Some systems use UTF-8, but these should find the ".../man/xx.UTF-8/man1/" 1291 # Some systems use UTF-8, but these should find the ".../man/xx.UTF-8/man1/"
1284 # directory first. 1292 # directory first.
1293 # FreeBSD uses ".../man/xx.ISO8859-1/man1" for latin1, use that one too.
1285 DEST_MAN = $(DEST_MAN_TOP)$(MAN1DIR) 1294 DEST_MAN = $(DEST_MAN_TOP)$(MAN1DIR)
1286 DEST_MAN_IT = $(DEST_MAN_TOP)/it$(MAN1DIR) 1295 DEST_MAN_IT = $(DEST_MAN_TOP)/it$(MAN1DIR)
1296 DEST_MAN_IT_I = $(DEST_MAN_TOP)/it.ISO8859-1$(MAN1DIR)
1287 DEST_MAN_IT_U = $(DEST_MAN_TOP)/it.UTF-8$(MAN1DIR) 1297 DEST_MAN_IT_U = $(DEST_MAN_TOP)/it.UTF-8$(MAN1DIR)
1288 DEST_MAN_RU = $(DEST_MAN_TOP)/ru.KOI8-R$(MAN1DIR) 1298 DEST_MAN_RU = $(DEST_MAN_TOP)/ru.KOI8-R$(MAN1DIR)
1289 DEST_MAN_RU_U = $(DEST_MAN_TOP)/ru.UTF-8$(MAN1DIR) 1299 DEST_MAN_RU_U = $(DEST_MAN_TOP)/ru.UTF-8$(MAN1DIR)
1290 1300
1291 # BASIC_SRC: files that are always used 1301 # BASIC_SRC: files that are always used
1334 auto/pathdef.c \ 1344 auto/pathdef.c \
1335 quickfix.c \ 1345 quickfix.c \
1336 regexp.c \ 1346 regexp.c \
1337 screen.c \ 1347 screen.c \
1338 search.c \ 1348 search.c \
1349 spell.c \
1339 syntax.c \ 1350 syntax.c \
1340 tag.c \ 1351 tag.c \
1341 term.c \ 1352 term.c \
1342 ui.c \ 1353 ui.c \
1343 undo.c \ 1354 undo.c \
1402 objects/pathdef.o \ 1413 objects/pathdef.o \
1403 objects/quickfix.o \ 1414 objects/quickfix.o \
1404 objects/regexp.o \ 1415 objects/regexp.o \
1405 objects/screen.o \ 1416 objects/screen.o \
1406 objects/search.o \ 1417 objects/search.o \
1418 objects/spell.o \
1407 objects/syntax.o \ 1419 objects/syntax.o \
1408 $(SNIFF_OBJ) \ 1420 $(SNIFF_OBJ) \
1409 objects/tag.o \ 1421 objects/tag.o \
1410 objects/term.o \ 1422 objects/term.o \
1411 objects/ui.o \ 1423 objects/ui.o \
1459 os_unix.pro \ 1471 os_unix.pro \
1460 quickfix.pro \ 1472 quickfix.pro \
1461 regexp.pro \ 1473 regexp.pro \
1462 screen.pro \ 1474 screen.pro \
1463 search.pro \ 1475 search.pro \
1476 spell.pro \
1464 syntax.pro \ 1477 syntax.pro \
1465 tag.pro \ 1478 tag.pro \
1466 term.pro \ 1479 term.pro \
1467 termlib.pro \ 1480 termlib.pro \
1468 ui.pro \ 1481 ui.pro \
1679 # 1692 #
1680 install: $(GUI_INSTALL) 1693 install: $(GUI_INSTALL)
1681 1694
1682 install_normal: installvim installtools install-languages install-icons 1695 install_normal: installvim installtools install-languages install-icons
1683 1696
1684 installvim: installvimbin installruntime installlinks installmanlinks installmacros installtutor 1697 installvim: installvimbin installruntime installlinks installmanlinks installmacros installtutor installspell
1685 1698
1686 installvimbin: $(VIMTARGET) $(DESTDIR)$(exec_prefix) $(DEST_BIN) 1699 installvimbin: $(VIMTARGET) $(DESTDIR)$(exec_prefix) $(DEST_BIN)
1687 -if test -f $(DEST_BIN)/$(VIMTARGET); then \ 1700 -if test -f $(DEST_BIN)/$(VIMTARGET); then \
1688 mv -f $(DEST_BIN)/$(VIMTARGET) $(DEST_BIN)/$(VIMNAME).rm; \ 1701 mv -f $(DEST_BIN)/$(VIMTARGET) $(DEST_BIN)/$(VIMNAME).rm; \
1689 rm -f $(DEST_BIN)/$(VIMNAME).rm; \ 1702 rm -f $(DEST_BIN)/$(VIMNAME).rm; \
1700 $(VIMNAME) $(VIMDIFFNAME) $(EVIMNAME) 1713 $(VIMNAME) $(VIMDIFFNAME) $(EVIMNAME)
1701 1714
1702 # install the help files; first adjust the contents for the final location 1715 # install the help files; first adjust the contents for the final location
1703 installruntime: $(HELPSOURCE)/vim.1 $(DEST_VIM) $(DEST_RT) \ 1716 installruntime: $(HELPSOURCE)/vim.1 $(DEST_VIM) $(DEST_RT) \
1704 $(DEST_HELP) $(DEST_PRINT) $(DEST_COL) $(DEST_SYN) $(DEST_IND) \ 1717 $(DEST_HELP) $(DEST_PRINT) $(DEST_COL) $(DEST_SYN) $(DEST_IND) \
1705 $(DEST_FTP) $(DEST_PLUG) $(DEST_TUTOR) $(DEST_COMP) 1718 $(DEST_FTP) $(DEST_PLUG) $(DEST_TUTOR) $(DEST_SPELL) $(DEST_COMP)
1706 -$(SHELL) ./installman.sh install $(DEST_MAN) "" $(INSTALLMANARGS) 1719 -$(SHELL) ./installman.sh install $(DEST_MAN) "" $(INSTALLMANARGS)
1707 @echo generating help tags 1720 @echo generating help tags
1708 # Generate the help tags with ":helptags" to handle all languages. 1721 # Generate the help tags with ":helptags" to handle all languages.
1709 -@cd $(HELPSOURCE); $(MAKE) VIMEXE=$(DEST_BIN)/$(VIMTARGET) vimtags 1722 -@cd $(HELPSOURCE); $(MAKE) VIMEXE=$(DEST_BIN)/$(VIMTARGET) vimtags
1710 cd $(HELPSOURCE); \ 1723 cd $(HELPSOURCE); \
1790 $(INSTALL_DATA) vimtutor $(DEST_BIN)/$(VIMNAME)tutor 1803 $(INSTALL_DATA) vimtutor $(DEST_BIN)/$(VIMNAME)tutor
1791 chmod $(SCRIPTMOD) $(DEST_BIN)/$(VIMNAME)tutor 1804 chmod $(SCRIPTMOD) $(DEST_BIN)/$(VIMNAME)tutor
1792 -$(INSTALL_DATA) $(TUTORSOURCE)/README* $(TUTORSOURCE)/tutor* $(DEST_TUTOR) 1805 -$(INSTALL_DATA) $(TUTORSOURCE)/README* $(TUTORSOURCE)/tutor* $(DEST_TUTOR)
1793 chmod $(HELPMOD) $(DEST_TUTOR)/* 1806 chmod $(HELPMOD) $(DEST_TUTOR)/*
1794 1807
1808 # Install the spell files, if they exist.
1809 installspell: $(SPELLSOURCE) $(DEST_VIM) $(DEST_RT) $(DEST_SPELL)
1810 if test -f $(SPELLSOURCE)/en.spl; then \
1811 $(INSTALL_DATA) $(SPELLSOURCE)/*.spl $(DEST_SPELL); \
1812 chmod $(HELPMOD) $(DEST_SPELL)/*.spl; \
1813 fi
1814
1795 # install helper program xxd 1815 # install helper program xxd
1796 installtools: $(TOOLS) $(DESTDIR)$(exec_prefix) $(DEST_BIN) \ 1816 installtools: $(TOOLS) $(DESTDIR)$(exec_prefix) $(DEST_BIN) \
1797 $(TOOLSSOURCE) $(DEST_VIM) $(DEST_RT) $(DEST_TOOLS) 1817 $(TOOLSSOURCE) $(DEST_VIM) $(DEST_RT) $(DEST_TOOLS)
1798 if test -f $(DEST_BIN)/xxd$(EXEEXT); then \ 1818 if test -f $(DEST_BIN)/xxd$(EXEEXT); then \
1799 mv -f $(DEST_BIN)/xxd$(EXEEXT) $(DEST_BIN)/xxd.rm; \ 1819 mv -f $(DEST_BIN)/xxd$(EXEEXT) $(DEST_BIN)/xxd.rm; \
1802 $(INSTALL_PROG) xxd/xxd$(EXEEXT) $(DEST_BIN) 1822 $(INSTALL_PROG) xxd/xxd$(EXEEXT) $(DEST_BIN)
1803 $(STRIP) $(DEST_BIN)/xxd$(EXEEXT) 1823 $(STRIP) $(DEST_BIN)/xxd$(EXEEXT)
1804 chmod $(BINMOD) $(DEST_BIN)/xxd$(EXEEXT) 1824 chmod $(BINMOD) $(DEST_BIN)/xxd$(EXEEXT)
1805 -$(SHELL) ./installman.sh xxd $(DEST_MAN) "" $(INSTALLMANARGS) 1825 -$(SHELL) ./installman.sh xxd $(DEST_MAN) "" $(INSTALLMANARGS)
1806 -$(SHELL) ./installman.sh xxd $(DEST_MAN_IT) "-it" $(INSTALLMANARGS) 1826 -$(SHELL) ./installman.sh xxd $(DEST_MAN_IT) "-it" $(INSTALLMANARGS)
1827 -$(SHELL) ./installman.sh xxd $(DEST_MAN_IT_I) "-it" $(INSTALLMANARGS)
1807 -$(SHELL) ./installman.sh xxd $(DEST_MAN_IT_U) "-it.UTF-8" $(INSTALLMANARGS) 1828 -$(SHELL) ./installman.sh xxd $(DEST_MAN_IT_U) "-it.UTF-8" $(INSTALLMANARGS)
1808 -$(SHELL) ./installman.sh xxd $(DEST_MAN_RU) "-ru" $(INSTALLMANARGS) 1829 -$(SHELL) ./installman.sh xxd $(DEST_MAN_RU) "-ru" $(INSTALLMANARGS)
1809 -$(SHELL) ./installman.sh xxd $(DEST_MAN_RU_U) "-ru.UTF-8" $(INSTALLMANARGS) 1830 -$(SHELL) ./installman.sh xxd $(DEST_MAN_RU_U) "-ru.UTF-8" $(INSTALLMANARGS)
1810 # install the runtime tools 1831 # install the runtime tools
1811 $(INSTALL_DATA_R) $(TOOLSSOURCE)/* $(DEST_TOOLS) 1832 $(INSTALL_DATA_R) $(TOOLSSOURCE)/* $(DEST_TOOLS)
1823 -chmod $(SCRIPTMOD) `grep -l "^#!" $(DEST_TOOLS)/*` 1844 -chmod $(SCRIPTMOD) `grep -l "^#!" $(DEST_TOOLS)/*`
1824 1845
1825 # install the language specific files, if they were unpacked 1846 # install the language specific files, if they were unpacked
1826 install-languages: languages $(DEST_LANG) $(DEST_KMAP) 1847 install-languages: languages $(DEST_LANG) $(DEST_KMAP)
1827 -$(SHELL) ./installman.sh install $(DEST_MAN_IT) "-it" $(INSTALLMANARGS) 1848 -$(SHELL) ./installman.sh install $(DEST_MAN_IT) "-it" $(INSTALLMANARGS)
1849 -$(SHELL) ./installman.sh install $(DEST_MAN_IT_I) "-it" $(INSTALLMANARGS)
1828 -$(SHELL) ./installman.sh install $(DEST_MAN_IT_U) "-it.UTF-8" $(INSTALLMANARGS) 1850 -$(SHELL) ./installman.sh install $(DEST_MAN_IT_U) "-it.UTF-8" $(INSTALLMANARGS)
1829 -$(SHELL) ./installman.sh install $(DEST_MAN_RU) "-ru" $(INSTALLMANARGS) 1851 -$(SHELL) ./installman.sh install $(DEST_MAN_RU) "-ru" $(INSTALLMANARGS)
1830 -$(SHELL) ./installman.sh install $(DEST_MAN_RU_U) "-ru.UTF-8" $(INSTALLMANARGS) 1852 -$(SHELL) ./installman.sh install $(DEST_MAN_RU_U) "-ru.UTF-8" $(INSTALLMANARGS)
1831 -$(SHELL) ./installml.sh install "$(GUI_MAN_TARGETS)" \ 1853 -$(SHELL) ./installml.sh install "$(GUI_MAN_TARGETS)" \
1832 $(DEST_MAN_IT) $(INSTALLMLARGS) 1854 $(DEST_MAN_IT) $(INSTALLMLARGS)
1855 -$(SHELL) ./installml.sh install "$(GUI_MAN_TARGETS)" \
1856 $(DEST_MAN_IT_I) $(INSTALLMLARGS)
1833 -$(SHELL) ./installml.sh install "$(GUI_MAN_TARGETS)" \ 1857 -$(SHELL) ./installml.sh install "$(GUI_MAN_TARGETS)" \
1834 $(DEST_MAN_IT_U) $(INSTALLMLARGS) 1858 $(DEST_MAN_IT_U) $(INSTALLMLARGS)
1835 -$(SHELL) ./installml.sh install "$(GUI_MAN_TARGETS)" \ 1859 -$(SHELL) ./installml.sh install "$(GUI_MAN_TARGETS)" \
1836 $(DEST_MAN_RU) $(INSTALLMLARGS) 1860 $(DEST_MAN_RU) $(INSTALLMLARGS)
1837 -$(SHELL) ./installml.sh install "$(GUI_MAN_TARGETS)" \ 1861 -$(SHELL) ./installml.sh install "$(GUI_MAN_TARGETS)" \
1893 1917
1894 $(DESTDIR)$(exec_prefix) $(DEST_BIN) \ 1918 $(DESTDIR)$(exec_prefix) $(DEST_BIN) \
1895 $(DEST_VIM) $(DEST_RT) $(DEST_HELP) \ 1919 $(DEST_VIM) $(DEST_RT) $(DEST_HELP) \
1896 $(DEST_PRINT) $(DEST_COL) $(DEST_SYN) $(DEST_IND) $(DEST_FTP) \ 1920 $(DEST_PRINT) $(DEST_COL) $(DEST_SYN) $(DEST_IND) $(DEST_FTP) \
1897 $(DEST_LANG) $(DEST_KMAP) $(DEST_COMP) \ 1921 $(DEST_LANG) $(DEST_KMAP) $(DEST_COMP) \
1898 $(DEST_MACRO) $(DEST_TOOLS) $(DEST_TUTOR) $(DEST_PLUG): 1922 $(DEST_MACRO) $(DEST_TOOLS) $(DEST_TUTOR) $(DEST_SPELL) \
1923 $(DEST_PLUG):
1899 -$(SHELL) ./mkinstalldirs $@ 1924 -$(SHELL) ./mkinstalldirs $@
1900 -chmod $(DIRMOD) $@ 1925 -chmod $(DIRMOD) $@
1901 1926
1902 # create links from various names to vim. This is only done when the links 1927 # create links from various names to vim. This is only done when the links
1903 # (or executables with the same name) don't exist yet. 1928 # (or executables with the same name) don't exist yet.
1980 2005
1981 # Note: the "rmdir" will fail if any files were added after "make install" 2006 # Note: the "rmdir" will fail if any files were added after "make install"
1982 uninstall_runtime: 2007 uninstall_runtime:
1983 -$(SHELL) ./installman.sh uninstall $(DEST_MAN) "" $(INSTALLMANARGS) 2008 -$(SHELL) ./installman.sh uninstall $(DEST_MAN) "" $(INSTALLMANARGS)
1984 -$(SHELL) ./installman.sh uninstall $(DEST_MAN_IT) "" $(INSTALLMANARGS) 2009 -$(SHELL) ./installman.sh uninstall $(DEST_MAN_IT) "" $(INSTALLMANARGS)
2010 -$(SHELL) ./installman.sh uninstall $(DEST_MAN_IT_I) "" $(INSTALLMANARGS)
1985 -$(SHELL) ./installman.sh uninstall $(DEST_MAN_IT_U) "" $(INSTALLMANARGS) 2011 -$(SHELL) ./installman.sh uninstall $(DEST_MAN_IT_U) "" $(INSTALLMANARGS)
1986 -$(SHELL) ./installman.sh uninstall $(DEST_MAN_RU) "" $(INSTALLMANARGS) 2012 -$(SHELL) ./installman.sh uninstall $(DEST_MAN_RU) "" $(INSTALLMANARGS)
1987 -$(SHELL) ./installman.sh uninstall $(DEST_MAN_RU_U) "" $(INSTALLMANARGS) 2013 -$(SHELL) ./installman.sh uninstall $(DEST_MAN_RU_U) "" $(INSTALLMANARGS)
1988 -$(SHELL) ./installml.sh uninstall "$(GUI_MAN_TARGETS)" \ 2014 -$(SHELL) ./installml.sh uninstall "$(GUI_MAN_TARGETS)" \
1989 $(DEST_MAN) $(INSTALLMLARGS) 2015 $(DEST_MAN) $(INSTALLMLARGS)
1990 -$(SHELL) ./installml.sh uninstall "$(GUI_MAN_TARGETS)" \ 2016 -$(SHELL) ./installml.sh uninstall "$(GUI_MAN_TARGETS)" \
1991 $(DEST_MAN_IT) $(INSTALLMLARGS) 2017 $(DEST_MAN_IT) $(INSTALLMLARGS)
1992 -$(SHELL) ./installml.sh uninstall "$(GUI_MAN_TARGETS)" \ 2018 -$(SHELL) ./installml.sh uninstall "$(GUI_MAN_TARGETS)" \
2019 $(DEST_MAN_IT_I) $(INSTALLMLARGS)
2020 -$(SHELL) ./installml.sh uninstall "$(GUI_MAN_TARGETS)" \
1993 $(DEST_MAN_IT_U) $(INSTALLMLARGS) 2021 $(DEST_MAN_IT_U) $(INSTALLMLARGS)
1994 -$(SHELL) ./installml.sh uninstall "$(GUI_MAN_TARGETS)" \ 2022 -$(SHELL) ./installml.sh uninstall "$(GUI_MAN_TARGETS)" \
1995 $(DEST_MAN_RU) $(INSTALLMLARGS) 2023 $(DEST_MAN_RU) $(INSTALLMLARGS)
1996 -$(SHELL) ./installml.sh uninstall "$(GUI_MAN_TARGETS)" \ 2024 -$(SHELL) ./installml.sh uninstall "$(GUI_MAN_TARGETS)" \
1997 $(DEST_MAN_RU_U) $(INSTALLMLARGS) 2025 $(DEST_MAN_RU_U) $(INSTALLMLARGS)
1998 -rm -f $(DEST_MAN)/xxd.1 2026 -rm -f $(DEST_MAN)/xxd.1
1999 -rm -f $(DEST_MAN_IT)/xxd.1 $(DEST_MAN_IT_U)/xxd.1 2027 -rm -f $(DEST_MAN_IT)/xxd.1 $(DEST_MAN_IT_I)/xxd.1 $(DEST_MAN_IT_U)/xxd.1
2000 -rm -f $(DEST_MAN_RU)/xxd.1 $(DEST_MAN_RU_U)/xxd.1 2028 -rm -f $(DEST_MAN_RU)/xxd.1 $(DEST_MAN_RU_U)/xxd.1
2001 -rm -f $(DEST_HELP)/*.txt $(DEST_HELP)/tags $(DEST_HELP)/*.pl 2029 -rm -f $(DEST_HELP)/*.txt $(DEST_HELP)/tags $(DEST_HELP)/*.pl
2002 -rm -f $(DEST_HELP)/*.??x $(DEST_HELP)/tags-?? 2030 -rm -f $(DEST_HELP)/*.??x $(DEST_HELP)/tags-??
2003 -rm -f $(SYS_MENU_FILE) $(SYS_SYNMENU_FILE) $(SYS_DELMENU_FILE) 2031 -rm -f $(SYS_MENU_FILE) $(SYS_SYNMENU_FILE) $(SYS_DELMENU_FILE)
2004 -rm -f $(SYS_BUGR_FILE) $(EVIM_FILE) $(MSWIN_FILE) 2032 -rm -f $(SYS_BUGR_FILE) $(EVIM_FILE) $(MSWIN_FILE)
2010 -rm -f $(DEST_COL)/*.vim $(DEST_COL)/README.txt 2038 -rm -f $(DEST_COL)/*.vim $(DEST_COL)/README.txt
2011 -rm -f $(DEST_SYN)/*.vim $(DEST_SYN)/README.txt 2039 -rm -f $(DEST_SYN)/*.vim $(DEST_SYN)/README.txt
2012 -rm -f $(DEST_IND)/*.vim $(DEST_IND)/README.txt 2040 -rm -f $(DEST_IND)/*.vim $(DEST_IND)/README.txt
2013 -rm -rf $(DEST_MACRO) 2041 -rm -rf $(DEST_MACRO)
2014 -rm -rf $(DEST_TUTOR) 2042 -rm -rf $(DEST_TUTOR)
2043 -rm -rf $(DEST_SPELL)
2015 -rm -rf $(DEST_TOOLS) 2044 -rm -rf $(DEST_TOOLS)
2016 -rm -rf $(DEST_LANG) 2045 -rm -rf $(DEST_LANG)
2017 -rm -rf $(DEST_KMAP) 2046 -rm -rf $(DEST_KMAP)
2018 -rm -rf $(DEST_COMP) 2047 -rm -rf $(DEST_COMP)
2019 -rm -f $(DEST_PRINT)/*.ps 2048 -rm -f $(DEST_PRINT)/*.ps
2363 $(CCC) -o $@ screen.c 2392 $(CCC) -o $@ screen.c
2364 2393
2365 objects/search.o: search.c 2394 objects/search.o: search.c
2366 $(CCC) -o $@ search.c 2395 $(CCC) -o $@ search.c
2367 2396
2397 objects/spell.o: spell.c
2398 $(CCC) -o $@ spell.c
2399
2368 objects/syntax.o: syntax.c 2400 objects/syntax.o: syntax.c
2369 $(CCC) -o $@ syntax.c 2401 $(CCC) -o $@ syntax.c
2370 2402
2371 objects/tag.o: tag.c 2403 objects/tag.o: tag.c
2372 $(CCC) -o $@ tag.c 2404 $(CCC) -o $@ tag.c
2638 objects/screen.o: screen.c vim.h auto/config.h feature.h os_unix.h \ 2670 objects/screen.o: screen.c vim.h auto/config.h feature.h os_unix.h \
2639 auto/osdef.h ascii.h keymap.h term.h macros.h structs.h regexp.h \ 2671 auto/osdef.h ascii.h keymap.h term.h macros.h structs.h regexp.h \
2640 gui.h gui_beval.h proto/gui_beval.pro option.h ex_cmds.h proto.h \ 2672 gui.h gui_beval.h proto/gui_beval.pro option.h ex_cmds.h proto.h \
2641 globals.h farsi.h arabic.h 2673 globals.h farsi.h arabic.h
2642 objects/search.o: search.c vim.h auto/config.h feature.h os_unix.h \ 2674 objects/search.o: search.c vim.h auto/config.h feature.h os_unix.h \
2675 auto/osdef.h ascii.h keymap.h term.h macros.h structs.h regexp.h \
2676 gui.h gui_beval.h proto/gui_beval.pro option.h ex_cmds.h proto.h \
2677 globals.h farsi.h arabic.h
2678 objects/spell.o: spell.c vim.h auto/config.h feature.h os_unix.h \
2643 auto/osdef.h ascii.h keymap.h term.h macros.h structs.h regexp.h \ 2679 auto/osdef.h ascii.h keymap.h term.h macros.h structs.h regexp.h \
2644 gui.h gui_beval.h proto/gui_beval.pro option.h ex_cmds.h proto.h \ 2680 gui.h gui_beval.h proto/gui_beval.pro option.h ex_cmds.h proto.h \
2645 globals.h farsi.h arabic.h 2681 globals.h farsi.h arabic.h
2646 objects/syntax.o: syntax.c vim.h auto/config.h feature.h os_unix.h \ 2682 objects/syntax.o: syntax.c vim.h auto/config.h feature.h os_unix.h \
2647 auto/osdef.h ascii.h keymap.h term.h macros.h structs.h regexp.h \ 2683 auto/osdef.h ascii.h keymap.h term.h macros.h structs.h regexp.h \