Bram Moolenaar | e1d1289 | 2004-06-13 13:02:36 +0000 | [diff] [blame] | 1 | # Makefile for Vim on Unix and Unix-like systems vim:ts=8:sw=8:tw=78 |
| 2 | # |
| 3 | # This Makefile is loosely based on the GNU Makefile conventions found in |
| 4 | # standards.info. |
| 5 | # |
| 6 | # Compiling Vim, summary: |
| 7 | # |
| 8 | # 3. make |
| 9 | # 5. make install |
| 10 | # |
| 11 | # Compiling Vim, details: |
| 12 | # |
| 13 | # Edit this file for adjusting to your system. You should not need to edit any |
| 14 | # other file for machine specific things! |
| 15 | # The name of this file MUST be Makefile (note the uppercase 'M'). |
| 16 | # |
| 17 | # 1. Edit this Makefile {{{1 |
| 18 | # The defaults for Vim should work on most machines, but you may want to |
| 19 | # uncomment some lines or make other changes below to tune it to your |
| 20 | # system, compiler or preferences. Uncommenting means that the '#' in |
| 21 | # the first column of a line is removed. |
| 22 | # - If you want a version of Vim that is small and starts up quickly, |
| 23 | # you might want to disable the GUI, X11, Perl, Python and Tcl. |
| 24 | # - Uncomment the line with --disable-gui if you have Motif, GTK and/or |
| 25 | # Athena but don't want to make gvim (the GUI version of Vim with nice |
| 26 | # menus and scrollbars, but makes Vim bigger and startup slower). |
| 27 | # - Uncomment --disable-darwin if on Mac OS X but you want to compile a |
| 28 | # Unix version. |
| 29 | # - Uncomment the line "CONF_OPT_X = --without-x" if you have X11 but |
| 30 | # want to disable using X11 libraries. This speeds up starting Vim, |
| 31 | # but the window title will not be set and the X11 selection can not |
| 32 | # used. |
| 33 | # - Uncomment the line "CONF_OPT_XSMP = --without-xsmp" if you have the |
| 34 | # X11 Session Management Protocol (XSMP) library (libSM) but do not |
| 35 | # want to use it. |
| 36 | # This can speedup Vim startup but Vim loses the ability to catch the |
| 37 | # user logging out from session-managers like GNOME & KDE and work |
| 38 | # could be lost. |
| 39 | # - Uncomment one or more of these lines to include an interface; |
| 40 | # each makes Vim quite a bit bigger: |
| 41 | # --enable-perlinterp for Perl interpreter |
| 42 | # --enable-pythoninterp for Python interpreter |
| 43 | # --enable-rubyinterp for Ruby interpreter |
| 44 | # --enable-tclinterp for Tcl interpreter |
| 45 | # --enable-cscope for Cscope interface |
| 46 | # - Uncomment one of the lines with --with-features= to enable a set of |
| 47 | # features (but not the interfaces just mentioned). |
| 48 | # - Uncomment the line with --disable-acl to disable ACL support even |
| 49 | # though your system supports it. |
| 50 | # - Uncomment the line with --disable-gpm to disable gpm support |
| 51 | # even though you have gpm libraries and includes |
| 52 | # - Uncomment one of the lines with CFLAGS and/or CC if you have |
| 53 | # something very special or want to tune the optimizer. |
| 54 | # - Search for the name of your system to see if it needs anything |
| 55 | # special. |
| 56 | # - A few versions of make use '.include "file"' instead of 'include |
| 57 | # file'. Adjust the include line below if yours does. |
| 58 | # |
| 59 | # 2. Edit feature.h {{{1 |
| 60 | # Only if you do not agree with the default compile features, e.g.: |
| 61 | # - you want Vim to be as vi compatible as it can be |
| 62 | # - you want to use Emacs tags files |
| 63 | # - you want right-to-left editing (Hebrew) |
| 64 | # - you want 'langmap' support (Greek) |
| 65 | # - you want to remove features to make Vim smaller |
| 66 | # |
| 67 | # 3. "make" {{{1 |
| 68 | # Will first run ./configure with the options in this file. Then it will |
| 69 | # start make again on this Makefile to do the compiling. You can also do |
| 70 | # this in two steps with: |
| 71 | # make config |
| 72 | # make |
| 73 | # The configuration phase creates/overwrites auto/config.h and |
| 74 | # auto/config.mk. |
| 75 | # The configure script is created with "make autoconf". It can detect |
| 76 | # different features of your system and act accordingly. However, it is |
| 77 | # not correct for all systems. Check this: |
| 78 | # - If you have X windows, but configure could not find it or reported |
| 79 | # another include/library directory then you wanted to use, you have |
| 80 | # to set CONF_OPT_X below. You might also check the installation of |
| 81 | # xmkmf. |
| 82 | # - If you have --enable-gui=motif and have Motif on your system, but |
| 83 | # configure reports "checking for location of gui... <not found>", you |
| 84 | # have to set GUI_INC_LOC and GUI_LIB_LOC below. |
| 85 | # If you changed something, do this to run configure again: |
| 86 | # make reconfig |
| 87 | # |
| 88 | # - If you do not trust the automatic configuration code, then inspect |
| 89 | # auto/config.h and auto/config.mk, before starting the actual build |
| 90 | # phase. If possible edit this Makefile, rather than auto/config.mk -- |
| 91 | # especially look at the definition of VIMLOC below. Note that the |
| 92 | # configure phase overwrites auto/config.mk and auto/config.h again. |
| 93 | # - If you get error messages, find out what is wrong and try to correct |
| 94 | # it in this Makefile. You may need to do "make reconfig" when you |
| 95 | # change anything that configure uses (e.g. switching from an old C |
| 96 | # compiler to an ANSI C compiler). Only when auto/configure does |
| 97 | # something wrong you may need to change one of the other files. If |
| 98 | # you find a clean way to fix the problem, consider sending a note to |
| 99 | # the author of autoconf (bug-gnu-utils@prep.ai.mit.edu) or Vim |
| 100 | # (Bram@vim.org). Don't bother to do that when you made a hack |
| 101 | # solution for a non-standard system. |
| 102 | # |
| 103 | # 4. "make test" {{{1 |
| 104 | # This is optional. This will run Vim scripts on a number of test |
| 105 | # files, and compare the produced output with the expected output. |
| 106 | # If all is well, you will get the "ALL DONE" message in the end. See |
| 107 | # below (search for "/^test"). |
| 108 | # |
| 109 | # 5. "make install" {{{1 |
| 110 | # If the new Vim seems to be working OK you can install it and the |
| 111 | # documentation in the appropriate location. The default is |
| 112 | # "/usr/local". Change "prefix" below to change the location. |
| 113 | # "auto/pathdef.c" will be compiled again after changing this to make |
| 114 | # the executable know where the help files are located. |
| 115 | # Note that any existing executable is removed or overwritten. If you |
| 116 | # want to keep it you will have to make a backup copy first. |
| 117 | # The runtime files are in a different directory for each version. You |
| 118 | # might want to delete an older version. |
| 119 | # If you don't want to install everything, there are other targets: |
| 120 | # make installvim only installs Vim, not the tools |
| 121 | # make installvimbin only installs the Vim executable |
| 122 | # make installruntime only installs the Vim help and |
| 123 | # runtime files |
| 124 | # make installlinks only installs the Vim binary links |
Bram Moolenaar | b5bf5b8 | 2004-12-24 14:35:23 +0000 | [diff] [blame] | 125 | # make installmanlinks only installs the Vim manpage links |
Bram Moolenaar | e1d1289 | 2004-06-13 13:02:36 +0000 | [diff] [blame] | 126 | # make installmacros only installs the Vim macros |
| 127 | # make installtutor only installs the Vim tutor |
| 128 | # make installtools only installs xxd |
| 129 | # 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 | # |
| 132 | # 6. Use Vim until a new version comes out. {{{1 |
| 133 | # |
| 134 | # 7. "make uninstall_runtime" {{{1 |
| 135 | # Will remove the runtime files for the current version. This is safe |
| 136 | # to use while another version is being used, only version-specific |
| 137 | # files will be deleted. |
| 138 | # To remove the runtime files of another version: |
| 139 | # make uninstall_runtime VIMRTDIR=/vim54 |
| 140 | # If you want to delete all installed files, use: |
| 141 | # make uninstall |
| 142 | # Note that this will delete files that have the same name for any |
| 143 | # version, thus you might need to do a "make install" soon after this. |
| 144 | # Be careful not to remove a version of Vim that is still being used! |
| 145 | # To find out which files and directories will be deleted, use: |
| 146 | # make -n uninstall |
| 147 | # }}} |
| 148 | # |
| 149 | ### This Makefile has been succesfully tested on many systems. {{{ |
| 150 | ### Only the ones that require special options are mentioned here. |
| 151 | ### Check the (*) column for remarks, listed below. |
| 152 | ### Later code changes may cause small problems, otherwise Vim is supposed to |
| 153 | ### compile and run without problems. |
| 154 | |
| 155 | #system: configurations: version (*) tested by: |
| 156 | #------------- ------------------------ ------- - ---------- |
| 157 | #AIX 3.2.5 cc (not gcc) - 4.5 (M) Will Fiveash |
| 158 | #AIX 4 cc +X11 -GUI 3.27 (4) Axel Kielhorn |
| 159 | #AIX 4.1.4 cc +X11 +GUI 4.5 (5) Nico Bakker |
| 160 | #AIX 4.2.1 cc 5.2k (C) Will Fiveash |
| 161 | #AIX 4.3.3.12 xic 3.6.6 5.6 (5) David R. Favor |
| 162 | #A/UX 3.1.1 gcc +X11 4.0 (6) Jim Jagielski |
| 163 | #BeOS PR mwcc DR3 5.0n (T) Olaf Seibert |
| 164 | #BSDI 2.1 (x86) shlicc2 gcc-2.6.3 -X11 X11R6 4.5 (1) Jos Backus |
| 165 | #BSD/OS 3.0 (x86) gcc gcc-2.7.2.1 -X11 X11R6 4.6c (1) Jos Backus |
| 166 | #CX/UX 6.2 cc +X11 +GUI_Mofif 5.4 (V) Kipp E. Howard |
| 167 | #DG/UX 5.4* gcc 2.5.8 GUI 5.0e (H) Jonas Schlein |
| 168 | #DG/UX 5.4R4.20 gcc 2.7.2 GUI 5.0s (H) Rocky Olive |
| 169 | #HP-UX (most) c89 cc 5.1 (2) Bram Moolenaar |
| 170 | #HP-UX_9.04 cc +X11 +Motif 5.0 (2) Carton Lao |
| 171 | #Irix 6.3 (O2) cc ? 4.5 (L) Edouard Poor |
| 172 | #Irix 6.4 cc ? 5.0m (S) Rick Sayre |
| 173 | #Irix 6.5 cc ? 6.0 (S) David Harrison |
| 174 | #Irix 64 bit 4.5 (K) Jon Wright |
| 175 | #Linux 2.0 gcc-2.7.2 Infomagic Motif 4.3 (3) Ronald Rietman |
| 176 | #Linux 2.0.31 gcc +X11 +GUI Athena 5.0w (U) Darren Hiebert |
| 177 | #LynxOS 3.0.1 2.9-gnupro-98r2 +X11 +GUI Athena 5.7.1(O) Lorenz Hahn |
| 178 | #LynxOS 3.1.0 2.9-gnupro-98r2 +X11 +GUI Athena 5.7.1(O) Lorenz Hahn |
| 179 | #NEC UP4800 UNIX_SV 4.2MP cc +X11R6 Motif,Athena4.6b (Q) Lennart Schultz |
| 180 | #NetBSD 1.0A gcc-2.4.5 -X11 -GUI 3.21 (X) Juergen Weigert |
| 181 | #QNX 4.2 wcc386-10.6 -X11 4.2 (D) G.F. Desrochers |
| 182 | #QNX 4.23 Watcom -X11 4.2 (F) John Oleynick |
| 183 | #SCO Unix v3.2.5 cc +X11 Motif 3.27 (C) M. Kuperblum |
| 184 | #SCO Open Server 5 gcc 2.7.2.3 +X11 +GUI Motif 5.3 (A) Glauber Ribeiro |
| 185 | #SINIX-N 5.43 RM400 R4000 cc +X11 +GUI 5.0l (I) Martin Furter |
| 186 | #SINIX-Z 5.42 i386 gcc 2.7.2.3 +X11 +GUI Motif 5.1 (I) Joachim Fehn |
| 187 | #SINIX-Y 5.43 RM600 R4000 gcc 2.7.2.3 +X11 +GUI Motif 5.1 (I) Joachim Fehn |
| 188 | #Reliant/SINIX 5.44 cc +X11 +GUI 5.5a (I) B. Pruemmer |
| 189 | #SNI Targon31 TOS 4.1.11 gcc-2.4.5 +X11 -GUI 4.6c (B) Paul Slootman |
| 190 | #Solaris 2.4 (Sparc) cc +X11 +GUI 3.29 (9) Glauber |
| 191 | #Solaris 2.4/2.5 clcc +X11 -GUI openwin 3.20 (7) Robert Colon |
| 192 | #Solaris 2.5 (sun4m) cc (SC4.0) +X11R6 +GUI (CDE) 4.6b (E) Andrew Large |
| 193 | #Solaris 2.5 cc +X11 +GUI Athena 4.2 (9) Sonia Heimann |
| 194 | #Solaris 2.5 gcc 2.5.6 +X11 Motif 5.0m (R) Ant. Colombo |
| 195 | #Solaris 2.6 gcc 2.8.1 ncursus 5.3 (G) Larry W. Virden |
| 196 | #Solaris with -lthread 5.5 (W) K. Nagano |
| 197 | #Solaris gcc (b) Riccardo |
| 198 | #SunOS 4.1.x +X11 -GUI 5.1b (J) Bram Moolenaar |
| 199 | #SunOS 4.1.3_U1 (sun4c) gcc +X11 +GUI Athena 5.0w (J) Darren Hiebert |
| 200 | #SUPER-UX 6.2 (NEC SX-4) cc +X11R6 Motif,Athena4.6b (P) Lennart Schultz |
| 201 | #Unisys 6035 cc +X11 Motif 5.3 (8) Glauber Ribeiro |
| 202 | #ESIX V4.2 cc +X11 6.0 (a) Reinhard Wobst |
| 203 | #Mac OS X 10.[23] gcc Carbon 6.2 (x) Bram Moolenaar |
| 204 | # }}} |
| 205 | |
| 206 | # (*) Remarks: {{{ |
| 207 | # |
| 208 | # (1) Uncomment line below for shlicc2 |
| 209 | # (2) HPUX with compile problems or wrong digraphs, uncomment line below |
| 210 | # (3) Infomagic Motif needs GUI_LIB_LOC and GUI_INC_LOC set, see below. |
| 211 | # And add "-lXpm" to MOTIF_LIBS2. |
| 212 | # (4) For cc the optimizer must be disabled (use CFLAGS= after running |
| 213 | # configure) (symptom: ":set termcap" output looks weird). |
| 214 | # (5) Compiler may need extra argument, see below. |
| 215 | # (6) See below for a few lines to uncomment |
| 216 | # (7) See below for lines which enable the use of clcc |
| 217 | # (8) Needs some EXTRA_LIBS, search for Unisys below |
| 218 | # (9) Needs an extra compiler flag to compile gui_at_sb.c, see below. |
| 219 | # (A) May need EXTRA_LIBS, see below |
| 220 | # (B) Can't compile GUI because there is no waitpid()... Disable GUI below. |
| 221 | # (C) Force the use of curses instead of termcap, see below. |
| 222 | # (D) Uncomment lines below for QNX |
| 223 | # (E) You might want to use termlib instead of termcap, see below. |
| 224 | # (F) See below for instructions. |
| 225 | # (G) Using ncursus version 4.2 has reported to cause a crash. Use the |
| 226 | # Sun cursus library instead. |
| 227 | # (H) See line for EXTRA_LIBS below. |
| 228 | # (I) SINIX-N 5.42 and 5.43 need some EXTRA_LIBS. Also for Reliant-Unix. |
| 229 | # (J) If you get undefined symbols, see below for a solution. |
| 230 | # (K) See lines to uncomment below for machines with 64 bit pointers. |
| 231 | # (L) For Silicon Graphics O2 workstations remove "-lnsl" from auto/config.mk |
| 232 | # (M) gcc version cygnus-2.0.1 does NOT work (symptom: "dl" deletes two |
| 233 | # characters instead of one). |
| 234 | # (N) SCO with decmouse. |
| 235 | # (O) LynxOS needs EXTRA_LIBS, see below. |
| 236 | # (P) For SuperUX 6.2 on NEC SX-4 see a few lines below to uncomment. |
| 237 | # (Q) For UNIXSVR 4.2MP on NEC UP4800 see below for lines to uncomment. |
| 238 | # (R) For Solaris 2.5 (or 2.5.1) with gcc > 2.5.6, uncomment line below. |
| 239 | # (S) For Irix 6.x with MipsPro compiler, use -OPT:Olimit. See line below. |
| 240 | # (T) See ../doc/os_beos.txt. |
| 241 | # (U) Must uncomment CONF_OPT_PYTHON option below to disable Python |
| 242 | # detection, since the configure script runs into an error when it |
| 243 | # detects Python (probably because of the bash shell). |
| 244 | # (V) See lines to uncomment below. |
| 245 | # (X) Need to use the .include "auto/config.mk" line below |
| 246 | # (Y) See line with c89 below |
| 247 | # (Z) See lines with cc or c89 below |
| 248 | # (a) See line with EXTRA_LIBS below. |
| 249 | # (b) When using gcc with the Solaris linker, make sure you don't use GNU |
| 250 | # strip, otherwise the binary may not run: "Cannot find ELF". |
| 251 | # (x) When you get warnings for precompiled header files, run |
| 252 | # "sudo fixPrecomps". Also see CONF_OPT_DARWIN below. |
| 253 | # }}} |
| 254 | |
| 255 | |
| 256 | #DO NOT CHANGE the next line, we need it for configure to find the compiler |
| 257 | #instead of using the default from the "make" program. |
| 258 | #Use a line further down to change the value for CC. |
| 259 | CC= |
| 260 | |
| 261 | # Change and use these defines if configure cannot find your Motif stuff. |
| 262 | # Unfortunately there is no "standard" location for Motif. {{{ |
| 263 | # These defines can contain a single directory (recommended) or a list of |
| 264 | # directories (for when you are working with several systems). The LAST |
| 265 | # directory that exists is used. |
| 266 | # When changed, run "make reconfig" next! |
| 267 | #GUI_INC_LOC = -I/usr/include/Motif2.0 -I/usr/include/Motif1.2 |
| 268 | #GUI_LIB_LOC = -L/usr/lib/Motif2.0 -L/usr/lib/Motif1.2 |
| 269 | ### Use these two lines for Infomagic Motif (3) |
| 270 | #GUI_INC_LOC = -I/usr/X11R6/include |
| 271 | #GUI_LIB_LOC = -L/usr/X11R6/lib |
| 272 | # }}} |
| 273 | |
| 274 | ######################## auto/config.mk ######################## {{{1 |
| 275 | # At this position auto/config.mk is included. When starting from the |
| 276 | # distribution it is almost empty. After running auto/configure it contains |
| 277 | # settings that have been discovered for your system. Settings below this |
| 278 | # include override settings in auto/config.mk! |
| 279 | |
| 280 | # Note: if auto/config.mk is lost somehow (e.g., because configure was |
| 281 | # interrupted), create an empty auto/config.mk file and do "make config". |
| 282 | |
| 283 | # (X) How to include auto/config.mk depends on the version of "make" you have, |
| 284 | # if the current choice doesn't work, try the other one. |
| 285 | |
| 286 | include auto/config.mk |
| 287 | #.include "auto/config.mk" |
| 288 | CClink = $(CC) |
| 289 | |
| 290 | #}}} |
| 291 | |
| 292 | # Include the configuration choices first, so we can override everything |
| 293 | # below. As shipped, this file contains a target that causes to run |
| 294 | # configure. Once configure was run, this file contains a list of |
| 295 | # make variables with predefined values instead. Thus any second invocation |
| 296 | # of make, will buid Vim. |
| 297 | |
| 298 | # CONFIGURE - configure arguments {{{1 |
| 299 | # You can give a lot of options to configure. |
| 300 | # Change this to your desire and do 'make config' afterwards |
| 301 | |
| 302 | # examples (can only use one!): |
| 303 | #CONF_ARGS = --exec-prefix=/usr |
| 304 | #CONF_ARGS = --with-vim-name=vim6 --with-ex-name=ex6 --with-view-name=view6 |
| 305 | #CONF_ARGS = --with-global-runtime=/etc/vim |
| 306 | |
| 307 | # Use this one if you distribute a modified version of Vim. |
| 308 | #CONF_ARGS = --with-modified-by="John Doe" |
| 309 | |
| 310 | # GUI - For creating Vim with GUI (gvim) (B) |
| 311 | # Uncomment this line when you don't want to get the GUI version, although you |
| 312 | # have GTK, Motif and/or Athena. Also use --without-x if you don't want X11 |
| 313 | # at all. |
| 314 | #CONF_OPT_GUI = --disable-gui |
| 315 | |
| 316 | # Uncomment one of these lines if you have that GUI but don't want to use it. |
| 317 | # The automatic check will use another one that can be found |
| 318 | # Gnome is disabled by default, it may cause trouble. |
| 319 | #CONF_OPT_GUI = --disable-gtk-check |
| 320 | #CONF_OPT_GUI = --disable-gtk2-check |
| 321 | #CONF_OPT_GUI = --enable-gnome-check |
| 322 | #CONF_OPT_GUI = --enable-gnome2-check |
| 323 | #CONF_OPT_GUI = --disable-motif-check |
| 324 | #CONF_OPT_GUI = --disable-athena-check |
| 325 | #CONF_OPT_GUI = --disable-nextaw-check |
| 326 | |
| 327 | # Uncomment one of these lines to select a specific GUI to use. |
| 328 | # When using "yes" or nothing, configure will use the first one found: GTK+, |
| 329 | # Motif or Athena. |
| 330 | # |
| 331 | # GTK versions that are known not to work 100% are rejected. |
| 332 | # Use "--disable-gtktest" to accept them anyway. |
| 333 | # |
| 334 | # GNOME means GTK with Gnome support. If using GTK, then GNOME will |
| 335 | # automatically be used if it is found. If you have GNOME, but do not want to |
| 336 | # use it (e.g., want a GTK-only version), then use --enable-gui=gtk. |
| 337 | # |
Bram Moolenaar | 8169525 | 2004-12-29 20:58:21 +0000 | [diff] [blame] | 338 | # KDE doesn't fully work, unfortunately. See the todo list. |
| 339 | # |
Bram Moolenaar | e1d1289 | 2004-06-13 13:02:36 +0000 | [diff] [blame] | 340 | # If the selected GUI isn't found, the GUI is disabled automatically |
| 341 | #CONF_OPT_GUI = --enable-gui=gtk |
| 342 | #CONF_OPT_GUI = --enable-gui=gtk --disable-gtktest |
| 343 | #CONF_OPT_GUI = --enable-gui=gtk2 |
| 344 | #CONF_OPT_GUI = --enable-gui=gtk2 --disable-gtktest |
| 345 | #CONF_OPT_GUI = --enable-gui=gnome |
| 346 | #CONF_OPT_GUI = --enable-gui=gnome2 |
| 347 | #CONF_OPT_GUI = --enable-gui=gnome2 --disable-gtktest |
Bram Moolenaar | cfbc5ee | 2004-07-02 15:38:35 +0000 | [diff] [blame] | 348 | #CONF_OPT_GUI = --enable-gui=kde |
Bram Moolenaar | e1d1289 | 2004-06-13 13:02:36 +0000 | [diff] [blame] | 349 | #CONF_OPT_GUI = --enable-gui=motif |
| 350 | #CONF_OPT_GUI = --enable-gui=motif --with-motif-lib="-static -lXm -shared" |
| 351 | #CONF_OPT_GUI = --enable-gui=athena |
| 352 | #CONF_OPT_GUI = --enable-gui=nextaw |
| 353 | |
| 354 | # DARWIN - detecting Mac OS X |
| 355 | # Uncomment this line when you want to compile a Unix version of Vim on |
| 356 | # Darwin. None of the Mac specific options or files will be used. |
| 357 | #CONF_OPT_DARWIN = --disable-darwin |
| 358 | |
Bram Moolenaar | 325b7a2 | 2004-07-05 15:58:32 +0000 | [diff] [blame] | 359 | # PERL |
Bram Moolenaar | e1d1289 | 2004-06-13 13:02:36 +0000 | [diff] [blame] | 360 | # Uncomment this when you want to include the Perl interface. |
| 361 | # The Perl option sometimes causes problems, because it adds extra flags |
| 362 | # to the command line. If you see strange flags during compilation, check in |
| 363 | # auto/config.mk where they come from. If it's PERL_CFLAGS, try commenting |
| 364 | # the next line. |
| 365 | # When you get an error for a missing "perl.exp" file, try creating an emtpy |
| 366 | # one: "touch perl.exp". |
| 367 | # This requires at least "small" features, "tiny" doesn't work. |
| 368 | #CONF_OPT_PERL = --enable-perlinterp |
| 369 | |
Bram Moolenaar | 325b7a2 | 2004-07-05 15:58:32 +0000 | [diff] [blame] | 370 | # PYTHON |
Bram Moolenaar | e1d1289 | 2004-06-13 13:02:36 +0000 | [diff] [blame] | 371 | # Uncomment this when you want to include the Python interface. |
| 372 | #CONF_OPT_PYTHON = --enable-pythoninterp |
| 373 | |
Bram Moolenaar | 325b7a2 | 2004-07-05 15:58:32 +0000 | [diff] [blame] | 374 | # TCL |
Bram Moolenaar | e1d1289 | 2004-06-13 13:02:36 +0000 | [diff] [blame] | 375 | # Uncomment this when you want to include the Tcl interface. |
| 376 | #CONF_OPT_TCL = --enable-tclinterp |
| 377 | |
Bram Moolenaar | 325b7a2 | 2004-07-05 15:58:32 +0000 | [diff] [blame] | 378 | # RUBY |
Bram Moolenaar | e1d1289 | 2004-06-13 13:02:36 +0000 | [diff] [blame] | 379 | # Uncomment this when you want to include the Ruby interface. |
| 380 | #CONF_OPT_RUBY = --enable-rubyinterp |
| 381 | |
Bram Moolenaar | 325b7a2 | 2004-07-05 15:58:32 +0000 | [diff] [blame] | 382 | # MZSCHEME |
| 383 | # Uncomment this when you want to include the MzScheme interface. |
| 384 | #CONF_OPT_MZSCHEME = --enable-mzschemeinterp |
| 385 | # PLT/mrscheme/drscheme Home dir; the PLTHOME environment variable also works |
| 386 | #CONF_OPT_PLTHOME = --with-plthome=/usr/local/plt |
| 387 | #CONF_OPT_PLTHOME = --with-plthome=/usr/local/drscheme |
| 388 | #CONF_OPT_PLTHOME = --with-plthome=/home/me/mz |
| 389 | |
| 390 | # CSCOPE |
Bram Moolenaar | e1d1289 | 2004-06-13 13:02:36 +0000 | [diff] [blame] | 391 | # Uncomment this when you want to include the Cscope interface. |
| 392 | #CONF_OPT_CSCOPE = --enable-cscope |
| 393 | |
| 394 | # WORKSHOP - Sun Visual Workshop interface. Only works with Motif! |
| 395 | #CONF_OPT_WORKSHOP = --enable-workshop |
| 396 | |
| 397 | # NETBEANS - NetBeans interface. Only works with Motif, GTK, and gnome. |
| 398 | # Motif version must have XPM libraries (see |workshop-xpm|). |
| 399 | # Uncomment this when you do not want the netbeans interface. |
| 400 | #CONF_OPT_NETBEANS = --disable-netbeans |
| 401 | |
| 402 | # SNIFF - Include support for SNiFF+. |
| 403 | #CONF_OPT_SNIFF = --enable-sniff |
| 404 | |
| 405 | # MULTIBYTE - To edit multi-byte characters. |
| 406 | # Uncomment this when you want to edit a multibyte language. |
| 407 | # It's automatically enabled with big features or IME support. |
| 408 | # Note: Compile on a machine where setlocale() actually works, otherwise the |
| 409 | # configure tests may fail. |
| 410 | #CONF_OPT_MULTIBYTE = --enable-multibyte |
| 411 | |
| 412 | # NLS - National Language Support |
| 413 | # Uncomment this when you do not want to support translated messages, even |
| 414 | # though configure can find support for it. |
| 415 | #CONF_OPT_NLS = --disable-nls |
| 416 | |
| 417 | # XIM - X Input Method. Special character input support for X11 (chinese, |
| 418 | # japanese, special symbols, etc). Also needed for dead-key support. |
| 419 | # When omitted it's automatically enabled for the X-windows GUI. |
| 420 | # HANGUL - Input Hangul (korean) language using internal routines. |
| 421 | # Uncomment one of these when you want to input a multibyte language. |
| 422 | #CONF_OPT_INPUT = --enable-xim |
| 423 | #CONF_OPT_INPUT = --disable-xim |
| 424 | #CONF_OPT_INPUT = --enable-hangulinput |
| 425 | |
| 426 | # FONTSET - X fontset support for output of languages with many characters. |
| 427 | # Uncomment this when you want to output a multibyte language. |
| 428 | #CONF_OPT_OUTPUT = --enable-fontset |
| 429 | |
| 430 | # ACL - Uncomment this when you do not want to include ACL support, even |
| 431 | # though your system does support it. E.g., when it's buggy. |
| 432 | #CONF_OPT_ACL = --disable-acl |
| 433 | |
| 434 | # gpm - For mouse support on Linux console via gpm |
| 435 | # Uncomment this when you do not want to include gpm support, even |
| 436 | # though you have gpm libraries and includes |
| 437 | #CONF_OPT_GPM = --disable-gpm |
| 438 | |
| 439 | # FEATURES - For creating Vim with more or less features |
| 440 | # Uncomment one of these lines when you want to include few to many features. |
| 441 | # The default is "normal". |
| 442 | #CONF_OPT_FEAT = --with-features=tiny |
| 443 | #CONF_OPT_FEAT = --with-features=small |
| 444 | #CONF_OPT_FEAT = --with-features=normal |
| 445 | #CONF_OPT_FEAT = --with-features=big |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 446 | #CONF_OPT_FEAT = --with-features=huge |
Bram Moolenaar | e1d1289 | 2004-06-13 13:02:36 +0000 | [diff] [blame] | 447 | |
| 448 | # COMPILED BY - For including a specific e-mail address for ":version". |
| 449 | #CONF_OPT_COMPBY = "--with-compiledby=John Doe <JohnDoe@yahoo.com>" |
| 450 | |
| 451 | # X WINDOWS DISABLE - For creating a plain Vim without any X11 related fancies |
| 452 | # (otherwise Vim configure will try to include xterm titlebar access) |
| 453 | # Also disable the GUI above, otherwise it will be included anyway. |
| 454 | # When both GUI and X11 have been disabled this may save about 15% of the |
| 455 | # code and make Vim startup quicker. |
| 456 | #CONF_OPT_X = --without-x |
| 457 | |
| 458 | # X WINDOWS DIRECTORY - specify X directories |
| 459 | # If configure can't find you X stuff, or if you have multiple X11 derivates |
| 460 | # installed, you may wish to specify which one to use. |
| 461 | # Select nothing to let configure choose. |
| 462 | # This here selects openwin (as found on sun). |
| 463 | #XROOT = /usr/openwin |
| 464 | #CONF_OPT_X = --x-include=$(XROOT)/include --x-libraries=$(XROOT)/lib |
| 465 | |
| 466 | # X11 Session Management Protocol support |
| 467 | # Vim will try to use XSMP to catch the user logging out if there are unsaved |
| 468 | # files. Uncomment this line to disable that (it prevents vim trying to open |
| 469 | # communications with the session manager). |
| 470 | #CONF_OPT_XSMP = --disable-xsmp |
| 471 | |
| 472 | # You may wish to include xsmp but use exclude xsmp-interact if the logout |
| 473 | # XSMP functionality does not work well with your session-manager (at time of |
| 474 | # writing, this would be early GNOME-1 gnome-session: it 'freezes' other |
| 475 | # applications after Vim has cancelled a logout (until Vim quits). This |
| 476 | # *might* be the Vim code, but is more likely a bug in early GNOME-1. |
| 477 | # This disables the dialog that asks you if you want to save files or not. |
| 478 | #CONF_OPT_XSMP = --disable-xsmp-interact |
| 479 | |
| 480 | # COMPILER - Name of the compiler {{{1 |
| 481 | # The default from configure will mostly be fine, no need to change this, just |
| 482 | # an example. If a compiler is defined here, configure will use it rather than |
| 483 | # probing for one. It is dangerous to change this after configure was run. |
| 484 | # Make will use your choice then -- but beware: Many things may change with |
| 485 | # another compiler. It is wise to run 'make reconfig' to start all over |
| 486 | # again. |
| 487 | #CC = cc |
| 488 | #CC = gcc |
| 489 | |
| 490 | # COMPILER FLAGS - change as you please. Either before running {{{1 |
| 491 | # configure or afterwards. For examples see below. |
| 492 | # When using -g with some older versions of Linux you might get a |
| 493 | # statically linked executable. |
| 494 | # When not defined, configure will try to use -O2 -g for gcc and -O for cc. |
| 495 | #CFLAGS = -g |
| 496 | #CFLAGS = -O |
| 497 | |
| 498 | # Optimization limits - depends on the compiler. Automatic check in configure |
| 499 | # doesn't work very well, because many compilers only give a warning for |
| 500 | # unrecognized arguments. |
| 501 | #CFLAGS = -O -OPT:Olimit=2600 |
| 502 | #CFLAGS = -O -Olimit 2000 |
| 503 | #CFLAGS = -O -FOlimit,2000 |
| 504 | |
| 505 | # Often used for GCC: mixed optimizing, lot of optimizing, debugging |
| 506 | #CFLAGS = -g -O2 -fno-strength-reduce -Wall -Wshadow -Wmissing-prototypes |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 507 | #CFLAGS = -g -O2 -fno-strength-reduce -Wall -Wmissing-prototypes |
Bram Moolenaar | e1d1289 | 2004-06-13 13:02:36 +0000 | [diff] [blame] | 508 | #CFLAGS = -O6 -fno-strength-reduce -Wall -Wshadow -Wmissing-prototypes |
| 509 | #CFLAGS = -g -DDEBUG -Wall -Wshadow -Wmissing-prototypes |
Bram Moolenaar | 592e0a2 | 2004-07-03 16:05:59 +0000 | [diff] [blame] | 510 | #CFLAGS = -g -O2 '-DSTARTUPTIME="vimstartup"' -fno-strength-reduce -Wall -Wmissing-prototypes |
Bram Moolenaar | e1d1289 | 2004-06-13 13:02:36 +0000 | [diff] [blame] | 511 | |
| 512 | # EFENCE - Electric-Fence malloc debugging: catches memory accesses beyond |
| 513 | # allocated memory (and makes every malloc()/free() very slow). |
| 514 | # Electric Fence is free (search ftp sites). |
| 515 | # On FreeBSD you might need to enlarge the number of mmaps allowed. Do this |
| 516 | # as root: sysctl -w vm.max_proc_mmap=30000 |
| 517 | #EXTRA_LIBS = /usr/local/lib/libefence.a |
| 518 | |
| 519 | # PURIFY - remove the # to use the "purify" program (hoi Nia++!) |
| 520 | #PURIFY = purify |
| 521 | # }}} |
| 522 | |
| 523 | # LINT - for running lint |
| 524 | LINT_OPTIONS = -beprxzF |
| 525 | |
| 526 | # PROFILING - Uncomment the next two lines to do profiling with gcc and gprof. |
| 527 | # Might not work with GUI or Perl. |
| 528 | # Need to recompile everything after changing this: "make clean" "make". |
| 529 | #PROFILE_CFLAGS = -pg -g |
| 530 | #PROFILE_LIBS = -pg |
| 531 | |
| 532 | ##################################################### |
| 533 | ### Specific systems, check if yours is listed! ### {{{ |
| 534 | ##################################################### |
| 535 | |
| 536 | ### Uncomment things here only if the values chosen by configure are wrong. |
| 537 | ### It's better to adjust configure.in and "make autoconf", if you can! |
| 538 | ### Then send the required changes to configure.in to the bugs list. |
| 539 | |
| 540 | ### (1) BSD/OS 2.0.1, 2.1 or 3.0 using shared libraries |
| 541 | ### |
| 542 | #CC = shlicc2 |
| 543 | #CFLAGS = -O2 -g -m486 -Wall -Wshadow -Wmissing-prototypes -fno-builtin |
| 544 | |
| 545 | ### (2) HP-UX with a non-ANSI cc, use the c89 ANSI compiler |
| 546 | ### The first probably works on all systems |
| 547 | ### The second should work a bit better on newer systems |
| 548 | ### The third should work a bit better on HPUX 11.11 |
| 549 | ### Information provided by: Richard Allen <ra@rhi.hi.is> |
| 550 | #CC = c89 -D_HPUX_SOURCE |
| 551 | #CC = c89 -O +Onolimit +ESlit -D_HPUX_SOURCE |
| 552 | #CC = c89 -O +Onolimit +ESlit +e -D_HPUX_SOURCE |
| 553 | |
| 554 | ### (2) For HP-UX: Enable the use of a different set of digraphs. Use this |
| 555 | ### when the default (ISO) digraphs look completely wrong. |
| 556 | ### After changing this do "touch digraph.c; make". |
| 557 | #EXTRA_DEFS = -DHPUX_DIGRAPHS |
| 558 | |
| 559 | ### (2) For HP-UX: 9.04 cpp default macro definition table of 128000 bytes |
| 560 | ### is too small to compile many routines. It produces too much defining |
| 561 | ### and no space errors. |
| 562 | ### Uncomment the following to specify a larger macro definition table. |
| 563 | #CFLAGS = -Wp,-H256000 |
| 564 | |
| 565 | ### (2) For HP-UX 10.20 using the HP cc, with X11R6 and Motif 1.2, with |
| 566 | ### libraries in /usr/lib instead of /lib (avoiding transition links). |
| 567 | ### Information provided by: David Green |
| 568 | #XROOT = /usr |
| 569 | #CONF_OPT_X = --x-include=$(XROOT)/include/X11R6 --x-libraries=$(XROOT)/lib/X11R6 |
| 570 | #GUI_INC_LOC = -I/usr/include/Motif1.2 |
| 571 | #GUI_LIB_LOC = -L/usr/lib/Motif1.2_R6 |
| 572 | |
| 573 | ### (5) AIX 4.1.4 with cc |
| 574 | #CFLAGS = -O -qmaxmem=8192 |
| 575 | |
| 576 | ### AIX with c89 (Walter Briscoe) |
| 577 | #CC = c89 |
| 578 | #CPPFLAGS = -D_ALL_SOURCE |
| 579 | |
| 580 | ### AIX 4.3.3.12 with xic 3.6.6 (David R. Favor) |
| 581 | # needed to avoid a problem where strings.h gets included |
| 582 | #CFLAGS = -qsrcmsg -O2 -qmaxmem=8192 -D__STR31__ |
| 583 | |
| 584 | ### (W) Solaris with multi-threaded libraries (-lthread): |
| 585 | ### If suspending doesn't work properly, try using this line: |
| 586 | #EXTRA_DEFS = -D_REENTRANT |
| 587 | |
| 588 | ### (7) Solaris 2.4/2.5 with Centerline compiler |
| 589 | #CC = clcc |
| 590 | #X_LIBS_DIR = -L/usr/openwin/lib -R/usr/openwin/lib |
| 591 | #CFLAGS = -O |
| 592 | |
| 593 | ### (9) Solaris 2.x with cc (SunPro), using Athena. |
| 594 | ### Only required for compiling gui_at_sb.c. |
| 595 | ### Symptom: "identifier redeclared: vim_XawScrollbarSetThumb" |
| 596 | ### Use one of the lines (either Full ANSI or no ANSI at all) |
| 597 | #CFLAGS = $(CFLAGS) -Xc |
| 598 | #CFLAGS = $(CFLAGS) -Xs |
| 599 | |
| 600 | ### Solaris 2.3 with X11 and specific cc |
| 601 | #CC=/opt/SUNWspro/bin/cc -O -Xa -v -R/usr/openwin/lib |
| 602 | |
| 603 | ### Solaris with /usr/ucb/cc (it is rejected by autoconf as "cc") |
| 604 | #CC = /usr/ucb/cc |
| 605 | #EXTRA_LIBS = -R/usr/ucblib |
| 606 | |
| 607 | ### Solaris with Forte Developer and FEAT_SUN_WORKSHOP |
| 608 | # The Xpm library is available from http://koala.ilog.fr/ftp/pub/xpm. |
| 609 | #CC = cc |
| 610 | #XPM_DIR = /usr/local/xpm/xpm-3.4k-solaris |
| 611 | #XPM_LIB = -L$(XPM_DIR)/lib -R$(XPM_DIR)/lib -lXpm |
| 612 | #XPM_IPATH = -I$(XPM_DIR)/include |
| 613 | #EXTRA_LIBS = $(XPM_LIB) |
| 614 | #EXTRA_IPATHS = $(XPM_IPATH) |
| 615 | #EXTRA_DEFS = -xCC -DHAVE_X11_XPM_H |
| 616 | |
| 617 | ### Solaris with workshop compilers: Vim is unstable when compiled with |
| 618 | # "-fast". Use this instead. (Shea Martin) |
| 619 | #CFLAGS = -x02 -xtarget=ultra |
| 620 | |
| 621 | ### (R) for Solaris 2.5 (or 2.5.1) with gcc > 2.5.6 you might need this: |
| 622 | #LDFLAGS = -lw -ldl -lXmu |
| 623 | #GUI_LIB_LOC = -L/usr/local/lib |
| 624 | |
| 625 | ### (8) Unisys 6035 (Glauber Ribeiro) |
| 626 | #EXTRA_LIBS = -lnsl -lsocket -lgen |
| 627 | |
| 628 | ### When builtin functions cause problems with gcc (for Sun 4.1.x) |
| 629 | #CFLAGS = -O2 -Wall -traditional -Wno-implicit |
| 630 | |
| 631 | ### Apollo DOMAIN (with SYSTYPE = bsd4.3) (TESTED for version 3.0) |
| 632 | #EXTRA_DEFS = -DDOMAIN |
| 633 | #CFLAGS= -O -A systype,bsd4.3 |
| 634 | |
| 635 | ### Coherent 4.2.10 on Intel 386 platform |
| 636 | #EXTRA_DEFS = -Dvoid=int |
| 637 | #EXTRA_LIBS = -lterm -lsocket |
| 638 | |
| 639 | ### SCO 3.2, with different library name for terminfo |
| 640 | #EXTRA_LIBS = -ltinfo |
| 641 | |
| 642 | ### UTS2 for Amdahl UTS 2.1.x |
| 643 | #EXTRA_DEFS = -DUTS2 |
| 644 | #EXTRA_LIBS = -lsocket |
| 645 | |
| 646 | ### UTS4 for Amdahl UTS 4.x |
| 647 | #EXTRA_DEFS = -DUTS4 -Xa |
| 648 | |
| 649 | ### USL for Unix Systems Laboratories (SYSV 4.2) |
| 650 | #EXTRA_DEFS = -DUSL |
| 651 | |
| 652 | ### RISCos on MIPS without X11 |
| 653 | #EXTRA_DEFS = -DMIPS |
| 654 | |
| 655 | ### RISCos on MIPS with X11 |
| 656 | #EXTRA_LIBS = -lsun |
| 657 | |
| 658 | ### (6) A/UX 3.1.1 with gcc (Jim Jagielski) |
| 659 | #CC= gcc -D_POSIX_SOURCE |
| 660 | #CFLAGS= -O2 |
| 661 | #EXTRA_LIBS = -lposix -lbsd -ltermcap -lX11 |
| 662 | |
| 663 | ### (A) Some versions of SCO Open Server 5 (Jan Christiaan van Winkel) |
| 664 | ### Also use the CONF_TERM_LIB below! |
| 665 | #EXTRA_LIBS = -lgen |
| 666 | |
| 667 | ### (D) QNX (by G.F. Desrochers) |
| 668 | #CFLAGS = -g -O -mf -4 |
| 669 | |
| 670 | ### (F) QNX (by John Oleynick) |
| 671 | # 1. If you don't have an X server: Comment out CONF_OPT_GUI and uncomment |
| 672 | # CONF_OPT_X = --without-x. |
| 673 | # 2. make config |
| 674 | # 3. edit auto/config.mk and remove -ldir and -ltermcap from LIBS. It doesn't |
| 675 | # have -ldir (does config find it somewhere?) and -ltermcap has at |
| 676 | # least one problem so I use termlib.o instead. The problem with |
| 677 | # termcap is that it segfaults if you call it with the name of |
| 678 | # a non-existent terminal type. |
| 679 | # 4. edit auto/config.h and add #define USE_TMPNAM |
| 680 | # 5. add termlib.o to OBJ |
| 681 | # 6. make |
| 682 | |
| 683 | ### (H) for Data general DG/UX 5.4.2 and 5.4R3.10 (Jonas J. Schlein) |
| 684 | #EXTRA_LIBS = -lgen |
| 685 | |
| 686 | ### (I) SINIX-N 5.42 or 5.43 RM400 R4000 (also SINIX-Y and SINIX-Z) |
| 687 | #EXTRA_LIBS = -lgen -lnsl |
| 688 | ### For SINIX-Y this is needed for the right prototype of gettimeofday() |
| 689 | #EXTRA_DEFS = -D_XPG_IV |
| 690 | |
| 691 | ### (I) Reliant-Unix (aka SINIX) 5.44 with standard cc |
| 692 | # Use both "-F O3" lines for optimization or the "-g" line for debugging |
| 693 | #EXTRA_LIBS = -lgen -lsocket -lnsl -lSM -lICE |
| 694 | #CFLAGS = -F O3 -DSINIXN |
| 695 | #LDFLAGS = -F O3 |
| 696 | #CFLAGS = -g -DSINIXN |
| 697 | |
| 698 | ### (P) SCO 3.2.42, with different termcap names for some useful keys DJB |
| 699 | #EXTRA_DEFS = -DSCOKEYS -DNETTERM_MOUSE -DDEC_MOUSE -DXTERM_MOUSE -DHAVE_GETTIMEOFDAY |
| 700 | #EXTRA_LIBS = -lsocket -ltermcap -lmalloc -lc_s |
| 701 | |
| 702 | ### (P) SuperUX 6.2 on NEC SX-4 (Lennart Schultz) |
| 703 | #GUI_INC_LOC = -I/usr/include |
| 704 | #GUI_LIB_LOC = -L/usr/lib |
| 705 | #EXTRA_LIBS = -lgen |
| 706 | |
| 707 | ### (Q) UNIXSVR 4.2MP on NEC UP4800 (Lennart Schultz) |
| 708 | #GUI_INC_LOC = -I/usr/necccs/include |
| 709 | #GUI_LIB_LOC = -L/usr/necccs/lib/X11R6 |
| 710 | #XROOT = /usr/necccs |
| 711 | #CONF_OPT_X = --x-include=$(XROOT)/include --x-libraries=$(XROOT)/lib/X11R6 |
| 712 | #EXTRA_LIBS = -lsocket -lgen |
| 713 | |
| 714 | ### Irix 4.0 & 5.2 (Silicon Graphics Machines, __sgi will be defined) |
| 715 | # Not needed for Irix 5.3, Ives Aerts reported |
| 716 | #EXTRA_LIBS = -lmalloc -lc_s |
| 717 | # Irix 4.0, when regexp and regcmp cannot be found when linking: |
| 718 | #EXTRA_LIBS = -lmalloc -lc_s -lPW |
| 719 | |
| 720 | ### (S) Irix 6.x (MipsPro compiler): Uses different Olimit flag: |
| 721 | # Note: This newer option style is used with the MipsPro compilers ONLY if |
| 722 | # you are compiling an "n32" or "64" ABI binary (use either a -n32 |
| 723 | # flag or a -64 flag for CFLAGS). If you explicitly use a -o32 flag, |
| 724 | # then the CFLAGS option format will be the typical style (i.e. |
| 725 | # -Olimit 3000). |
| 726 | #CFLAGS = -OPT:Olimit=3000 -O |
| 727 | |
| 728 | ### (S) Irix 6.5 with MipsPro C compiler. Try this as a test to see new |
| 729 | # compiler features! Beware, the optimization is EXTREMELY thorough |
| 730 | # and takes quite a long time. |
| 731 | # Note: See the note above. Here, the -mips3 option automatically |
| 732 | # enables either the "n32" or "64" ABI, depending on what machine you |
| 733 | # are compiling on (n32 is explicitly enabled here, just to make sure). |
| 734 | #CFLAGS = -OPT:Olimit=3500 -O -n32 -mips3 -IPA:aggr_cprop=ON -INLINE:dfe=ON:list=ON:must=screen_char,out_char,ui_write,out_flush |
| 735 | #LDFLAGS= -OPT:Olimit=3500 -O -n32 -mips3 -IPA:aggr_cprop=ON -INLINE:dfe=ON:list=ON:must=screen_char,out_char,ui_write,out_flush |
| 736 | |
| 737 | ### (K) for SGI Irix machines with 64 bit pointers ("uname -s" says IRIX64) |
| 738 | ### Suggested by Jon Wright <jon@gate.sinica.edu.tw>. |
| 739 | ### Tested on R8000 IRIX6.1 Power Indigo2. |
| 740 | ### Check /etc/compiler.defaults for your compiler settings. |
| 741 | # either (for 64 bit pointers) uncomment the following line |
| 742 | #GUI_LIB_LOC = -L/usr/lib64 |
| 743 | # then |
| 744 | # 1) make config |
| 745 | # 2) edit auto/config.mk and delete the -lelf entry in the LIBS line |
| 746 | # 3) make |
| 747 | # |
| 748 | # or (for 32bit pointers) uncomment the following line |
| 749 | #EXTRA_DEFS = -n32 |
| 750 | #GUI_LIB_LOC = -L/usr/lib32 |
| 751 | # then |
| 752 | # 1) make config |
| 753 | # 2) edit auto/config.mk, add -n32 to LDFLAGS |
| 754 | # 3) make |
| 755 | ### |
| 756 | |
| 757 | ### (C) On SCO Unix v3.2.5 (and probably other versions) the termcap library, |
| 758 | ### which is found by configure, doesn't work correctly. Symptom is the |
| 759 | ### error message "Termcap entry too long". Uncomment the next line. |
| 760 | ### On AIX 4.2.1 (and other versions probably), libtermcap is reported |
| 761 | ### not to display properly. |
| 762 | ### after changing this, you need to do "make reconfig". |
| 763 | #CONF_TERM_LIB = --with-tlib=curses |
| 764 | |
| 765 | ### (E) If you want to use termlib library instead of the automatically found |
| 766 | ### one. After changing this, you need to do "make reconfig". |
| 767 | #CONF_TERM_LIB = --with-tlib=termlib |
| 768 | |
| 769 | ### (a) ESIX V4.2 (Reinhard Wobst) |
| 770 | #EXTRA_LIBS = -lnsl -lsocket -lgen -lXIM -lXmu -lXext |
| 771 | |
| 772 | ### If you want to use ncurses library instead of the automatically found one |
| 773 | ### after changing this, you need to do "make reconfig". |
| 774 | #CONF_TERM_LIB = --with-tlib=ncurses |
| 775 | |
| 776 | ### For GCC on MSDOS, the ".exe" suffix will be added. |
| 777 | #EXEEXT = .exe |
| 778 | #LNKEXT = .exe |
| 779 | |
| 780 | ### (O) For LynxOS 2.5.0, tested on PC. |
| 781 | #EXTRA_LIBS = -lXext -lSM -lICE -lbsd |
| 782 | ### For LynxOS 3.0.1, tested on PPC |
| 783 | #EXTRA_LIBS= -lXext -lSM -lICE -lnetinet -lXmu -liberty -lX11 |
| 784 | ### For LynxOS 3.1.0, tested on PC |
| 785 | #EXTRA_LIBS= -lXext -lSM -lICE -lnetinet -lXmu |
| 786 | |
| 787 | |
| 788 | ### (V) For CX/UX 6.2 (on Harris/Concurrent NightHawk 4800, 5800). Remove |
| 789 | ### -Qtarget if only in a 5800 environment. (Kipp E. Howard) |
| 790 | #CFLAGS = -O -Qtarget=m88110compat |
| 791 | #EXTRA_LIBS = -lgen |
| 792 | |
| 793 | ##################### end of system specific lines ################### }}} |
| 794 | |
| 795 | ### Names of the programs and targets {{{1 |
| 796 | VIMTARGET = $(VIMNAME)$(EXEEXT) |
| 797 | EXTARGET = $(EXNAME)$(LNKEXT) |
| 798 | VIEWTARGET = $(VIEWNAME)$(LNKEXT) |
| 799 | GVIMNAME = g$(VIMNAME) |
| 800 | GVIMTARGET = $(GVIMNAME)$(LNKEXT) |
| 801 | GVIEWNAME = g$(VIEWNAME) |
| 802 | GVIEWTARGET = $(GVIEWNAME)$(LNKEXT) |
| 803 | RVIMNAME = r$(VIMNAME) |
| 804 | RVIMTARGET = $(RVIMNAME)$(LNKEXT) |
| 805 | RVIEWNAME = r$(VIEWNAME) |
| 806 | RVIEWTARGET = $(RVIEWNAME)$(LNKEXT) |
| 807 | RGVIMNAME = r$(GVIMNAME) |
| 808 | RGVIMTARGET = $(RGVIMNAME)$(LNKEXT) |
| 809 | RGVIEWNAME = r$(GVIEWNAME) |
| 810 | RGVIEWTARGET = $(RGVIEWNAME)$(LNKEXT) |
| 811 | VIMDIFFNAME = $(VIMNAME)diff |
| 812 | GVIMDIFFNAME = g$(VIMDIFFNAME) |
| 813 | VIMDIFFTARGET = $(VIMDIFFNAME)$(LNKEXT) |
| 814 | GVIMDIFFTARGET = $(GVIMDIFFNAME)$(LNKEXT) |
| 815 | EVIMNAME = e$(VIMNAME) |
| 816 | EVIMTARGET = $(EVIMNAME)$(LNKEXT) |
| 817 | EVIEWNAME = e$(VIEWNAME) |
| 818 | EVIEWTARGET = $(EVIEWNAME)$(LNKEXT) |
| 819 | |
| 820 | ### Names of the tools that are also made {{{1 |
| 821 | TOOLS = xxd/xxd$(EXEEXT) |
| 822 | |
| 823 | ### Installation directories. The defaults come from configure. {{{1 |
| 824 | # |
| 825 | ### prefix the top directory for the data (default "/usr/local") |
| 826 | # |
| 827 | # Uncomment the next line to install Vim in your home directory. |
| 828 | #prefix = $(HOME) |
| 829 | |
| 830 | ### exec_prefix is the top directory for the executable (default $(prefix)) |
| 831 | # |
| 832 | # Uncomment the next line to install the Vim executable in "/usr/machine/bin" |
| 833 | #exec_prefix = /usr/machine |
| 834 | |
| 835 | ### BINDIR dir for the executable (default "$(exec_prefix)/bin") |
| 836 | ### MANDIR dir for the manual pages (default "$(prefix)/man") |
| 837 | ### DATADIR dir for the other files (default "$(prefix)/lib" or |
| 838 | # "$(prefix)/share") |
| 839 | # They may be different when using different architectures for the |
| 840 | # executable and a common directory for the other files. |
| 841 | # |
| 842 | # Uncomment the next line to install Vim in "/usr/bin" |
| 843 | #BINDIR = /usr/bin |
| 844 | # Uncomment the next line to install Vim manuals in "/usr/share/man/man1" |
| 845 | #MANDIR = /usr/share/man |
| 846 | # Uncomment the next line to install Vim help files in "/usr/share/vim" |
| 847 | #DATADIR = /usr/share |
| 848 | |
| 849 | ### DESTDIR root of the installation tree. This is prepended to the other |
| 850 | # directories. This directory must exist. |
| 851 | #DESTDIR = ~/pkg/vim |
| 852 | |
Bram Moolenaar | b5bf5b8 | 2004-12-24 14:35:23 +0000 | [diff] [blame] | 853 | ### Directory of the man pages |
| 854 | MAN1DIR = /man1 |
Bram Moolenaar | e1d1289 | 2004-06-13 13:02:36 +0000 | [diff] [blame] | 855 | |
Bram Moolenaar | 2df6dcc | 2004-07-12 15:53:54 +0000 | [diff] [blame] | 856 | ### Vim version (adjusted by a script) |
| 857 | VIMMAJOR = 7 |
| 858 | VIMMINOR = 0aa |
| 859 | |
Bram Moolenaar | e1d1289 | 2004-06-13 13:02:36 +0000 | [diff] [blame] | 860 | ### Location of Vim files (should not need to be changed, and {{{1 |
| 861 | ### some things might not work when they are changed!) |
| 862 | VIMDIR = /vim |
Bram Moolenaar | 2df6dcc | 2004-07-12 15:53:54 +0000 | [diff] [blame] | 863 | VIMRTDIR = /vim$(VIMMAJOR)$(VIMMINOR) |
Bram Moolenaar | e1d1289 | 2004-06-13 13:02:36 +0000 | [diff] [blame] | 864 | HELPSUBDIR = /doc |
| 865 | COLSUBDIR = /colors |
| 866 | SYNSUBDIR = /syntax |
| 867 | INDSUBDIR = /indent |
| 868 | PLUGSUBDIR = /plugin |
| 869 | FTPLUGSUBDIR = /ftplugin |
| 870 | LANGSUBDIR = /lang |
| 871 | COMPSUBDIR = /compiler |
| 872 | KMAPSUBDIR = /keymap |
| 873 | MACROSUBDIR = /macros |
| 874 | TOOLSSUBDIR = /tools |
| 875 | TUTORSUBDIR = /tutor |
| 876 | PRINTSUBDIR = /print |
| 877 | PODIR = po |
| 878 | |
| 879 | ### VIMLOC common root of the Vim files (all versions) |
| 880 | ### VIMRTLOC common root of the runtime Vim files (this version) |
| 881 | ### VIMRCLOC compiled-in location for global [g]vimrc files (all versions) |
| 882 | ### VIMRUNTIMEDIR compiled-in location for runtime files (optional) |
| 883 | ### HELPSUBLOC location for help files |
| 884 | ### COLSUBLOC location for colorscheme files |
| 885 | ### SYNSUBLOC location for syntax files |
| 886 | ### INDSUBLOC location for indent files |
| 887 | ### PLUGSUBLOC location for standard plugin files |
| 888 | ### FTPLUGSUBLOC location for ftplugin files |
| 889 | ### LANGSUBLOC location for language files |
| 890 | ### COMPSUBLOC location for compiler files |
| 891 | ### KMAPSUBLOC location for keymap files |
| 892 | ### MACROSUBLOC location for macro files |
| 893 | ### TOOLSSUBLOC location for tools files |
| 894 | ### TUTORSUBLOC location for tutor files |
| 895 | ### PRINTSUBLOC location for PostScript files (prolog, latin1, ..) |
| 896 | ### SCRIPTLOC location for script files (menu.vim, bugreport.vim, ..) |
| 897 | ### You can override these if you want to install them somewhere else. |
| 898 | ### Edit feature.h for compile-time settings. |
| 899 | VIMLOC = $(DATADIR)$(VIMDIR) |
| 900 | VIMRTLOC = $(DATADIR)$(VIMDIR)$(VIMRTDIR) |
| 901 | VIMRCLOC = $(VIMLOC) |
| 902 | HELPSUBLOC = $(VIMRTLOC)$(HELPSUBDIR) |
| 903 | COLSUBLOC = $(VIMRTLOC)$(COLSUBDIR) |
| 904 | SYNSUBLOC = $(VIMRTLOC)$(SYNSUBDIR) |
| 905 | INDSUBLOC = $(VIMRTLOC)$(INDSUBDIR) |
| 906 | PLUGSUBLOC = $(VIMRTLOC)$(PLUGSUBDIR) |
| 907 | FTPLUGSUBLOC = $(VIMRTLOC)$(FTPLUGSUBDIR) |
| 908 | LANGSUBLOC = $(VIMRTLOC)$(LANGSUBDIR) |
| 909 | COMPSUBLOC = $(VIMRTLOC)$(COMPSUBDIR) |
| 910 | KMAPSUBLOC = $(VIMRTLOC)$(KMAPSUBDIR) |
| 911 | MACROSUBLOC = $(VIMRTLOC)$(MACROSUBDIR) |
| 912 | TOOLSSUBLOC = $(VIMRTLOC)$(TOOLSSUBDIR) |
| 913 | TUTORSUBLOC = $(VIMRTLOC)$(TUTORSUBDIR) |
| 914 | PRINTSUBLOC = $(VIMRTLOC)$(PRINTSUBDIR) |
| 915 | SCRIPTLOC = $(VIMRTLOC) |
| 916 | |
| 917 | ### Only set VIMRUNTIMEDIR when VIMRTLOC is set to a different location and |
| 918 | ### the runtime directory is not below it. |
| 919 | #VIMRUNTIMEDIR = $(VIMRTLOC) |
| 920 | |
| 921 | ### Name of the evim file target. |
| 922 | EVIM_FILE = $(DESTDIR)$(SCRIPTLOC)/evim.vim |
| 923 | MSWIN_FILE = $(DESTDIR)$(SCRIPTLOC)/mswin.vim |
| 924 | |
| 925 | ### Name of the menu file target. |
| 926 | SYS_MENU_FILE = $(DESTDIR)$(SCRIPTLOC)/menu.vim |
| 927 | SYS_SYNMENU_FILE = $(DESTDIR)$(SCRIPTLOC)/synmenu.vim |
| 928 | SYS_DELMENU_FILE = $(DESTDIR)$(SCRIPTLOC)/delmenu.vim |
| 929 | |
| 930 | ### Name of the bugreport file target. |
| 931 | SYS_BUGR_FILE = $(DESTDIR)$(SCRIPTLOC)/bugreport.vim |
| 932 | |
| 933 | ### Name of the file type detection file target. |
| 934 | SYS_FILETYPE_FILE = $(DESTDIR)$(SCRIPTLOC)/filetype.vim |
| 935 | |
| 936 | ### Name of the file type detection file target. |
| 937 | SYS_FTOFF_FILE = $(DESTDIR)$(SCRIPTLOC)/ftoff.vim |
| 938 | |
| 939 | ### Name of the file type detection script file target. |
| 940 | SYS_SCRIPTS_FILE = $(DESTDIR)$(SCRIPTLOC)/scripts.vim |
| 941 | |
| 942 | ### Name of the ftplugin-on file target. |
| 943 | SYS_FTPLUGIN_FILE = $(DESTDIR)$(SCRIPTLOC)/ftplugin.vim |
| 944 | |
| 945 | ### Name of the ftplugin-off file target. |
| 946 | SYS_FTPLUGOF_FILE = $(DESTDIR)$(SCRIPTLOC)/ftplugof.vim |
| 947 | |
| 948 | ### Name of the indent-on file target. |
| 949 | SYS_INDENT_FILE = $(DESTDIR)$(SCRIPTLOC)/indent.vim |
| 950 | |
| 951 | ### Name of the indent-off file target. |
| 952 | SYS_INDOFF_FILE = $(DESTDIR)$(SCRIPTLOC)/indoff.vim |
| 953 | |
| 954 | ### Name of the option window script file target. |
| 955 | SYS_OPTWIN_FILE = $(DESTDIR)$(SCRIPTLOC)/optwin.vim |
| 956 | |
| 957 | # Program to install the program in the target directory. Could also be "mv". |
| 958 | INSTALL_PROG = cp |
| 959 | |
| 960 | # Program to install the data in the target directory. Cannot be "mv"! |
| 961 | INSTALL_DATA = cp |
| 962 | INSTALL_DATA_R = cp -r |
| 963 | |
| 964 | ### Program to run on installed binary |
| 965 | #STRIP = strip |
| 966 | |
| 967 | ### Permissions for binaries {{{1 |
| 968 | BINMOD = 755 |
| 969 | |
| 970 | ### Permissions for man page |
| 971 | MANMOD = 644 |
| 972 | |
| 973 | ### Permissions for help files |
| 974 | HELPMOD = 644 |
| 975 | |
| 976 | ### Permissions for Perl and shell scripts |
| 977 | SCRIPTMOD = 755 |
| 978 | |
| 979 | ### Permission for Vim script files (menu.vim, bugreport.vim, ..) |
| 980 | VIMSCRIPTMOD = 644 |
| 981 | |
| 982 | ### Permissions for all directories that are created |
| 983 | DIRMOD = 755 |
| 984 | |
| 985 | ### Permissions for all other files that are created |
| 986 | FILEMOD = 644 |
| 987 | |
| 988 | # Where to copy the man and help files from |
| 989 | HELPSOURCE = ../runtime/doc |
| 990 | |
| 991 | # Where to copy the script files from (menu, bugreport) |
| 992 | SCRIPTSOURCE = ../runtime |
| 993 | |
| 994 | # Where to copy the colorscheme files from |
| 995 | COLSOURCE = ../runtime/colors |
| 996 | |
| 997 | # Where to copy the syntax files from |
| 998 | SYNSOURCE = ../runtime/syntax |
| 999 | |
| 1000 | # Where to copy the indent files from |
| 1001 | INDSOURCE = ../runtime/indent |
| 1002 | |
| 1003 | # Where to copy the standard plugin files from |
| 1004 | PLUGSOURCE = ../runtime/plugin |
| 1005 | |
| 1006 | # Where to copy the ftplugin files from |
| 1007 | FTPLUGSOURCE = ../runtime/ftplugin |
| 1008 | |
| 1009 | # Where to copy the macro files from |
| 1010 | MACROSOURCE = ../runtime/macros |
| 1011 | |
| 1012 | # Where to copy the tools files from |
| 1013 | TOOLSSOURCE = ../runtime/tools |
| 1014 | |
| 1015 | # Where to copy the tutor files from |
| 1016 | TUTORSOURCE = ../runtime/tutor |
| 1017 | |
| 1018 | # Where to look for language specific files |
| 1019 | LANGSOURCE = ../runtime/lang |
| 1020 | |
| 1021 | # Where to look for compiler files |
| 1022 | COMPSOURCE = ../runtime/compiler |
| 1023 | |
| 1024 | # Where to look for keymap files |
| 1025 | KMAPSOURCE = ../runtime/keymap |
| 1026 | |
| 1027 | # Where to look for print resource files |
| 1028 | PRINTSOURCE = ../runtime/print |
| 1029 | |
| 1030 | # If you are using Linux, you might want to use this to make vim the |
| 1031 | # default vi editor, it will create a link from vi to Vim when doing |
| 1032 | # "make install". An existing file will be overwritten! |
| 1033 | # When not using it, some make programs can't handle an undefined $(LINKIT). |
| 1034 | #LINKIT = -ln -f -s $(BINDIR)/$(VIMTARGET) /usr/bin/vi |
| 1035 | LINKIT = @echo >/dev/null |
| 1036 | |
| 1037 | ### |
| 1038 | ### GRAPHICAL USER INTERFACE (GUI). {{{1 |
| 1039 | ### 'configure --enable-gui' can enable one of these for you if you did set |
| 1040 | ### a corresponding CONF_OPT_GUI above and have X11. |
| 1041 | ### Override configures choice by uncommenting all the following lines. |
| 1042 | ### As they are, the GUI is disabled. Replace "NONE" with "ATHENA" or "MOTIF" |
| 1043 | ### for enabling the Athena or Motif GUI. |
| 1044 | #GUI_SRC = $(NONE_SRC) |
| 1045 | #GUI_OBJ = $(NONE_OBJ) |
| 1046 | #GUI_DEFS = $(NONE_DEFS) |
| 1047 | #GUI_IPATH = $(NONE_IPATH) |
| 1048 | #GUI_LIBS_DIR = $(NONE_LIBS_DIR) |
| 1049 | #GUI_LIBS1 = $(NONE_LIBS1) |
| 1050 | #GUI_LIBS2 = $(NONE_LIBS2) |
| 1051 | #GUI_INSTALL = $(NONE_INSTALL) |
| 1052 | #GUI_TARGETS = $(NONE_TARGETS) |
| 1053 | #GUI_MAN_TARGETS= $(NONE_MAN_TARGETS) |
| 1054 | #GUI_TESTTARGET = $(NONE_TESTTARGET) |
| 1055 | |
| 1056 | # Without a GUI install the normal way. |
| 1057 | NONE_INSTALL = install_normal |
| 1058 | |
Bram Moolenaar | 843ee41 | 2004-06-30 16:16:41 +0000 | [diff] [blame] | 1059 | ### KDE GUI interface. |
Bram Moolenaar | 5eb86f9 | 2004-07-26 12:53:41 +0000 | [diff] [blame] | 1060 | KDE_SRC = gui.c pty.c gui_kde.cc gui_kde_x11.cc gui_kde_wid.cc gui_kde_wid_moc.cc kvim_iface_skel.cc |
Bram Moolenaar | 843ee41 | 2004-06-30 16:16:41 +0000 | [diff] [blame] | 1061 | KDE_OBJ = objects/gui.o objects/pty.o objects/gui_kde.o objects/gui_kde_x11.o \ |
Bram Moolenaar | 5eb86f9 | 2004-07-26 12:53:41 +0000 | [diff] [blame] | 1062 | objects/gui_kde_wid.o objects/gui_kde_wid_moc.o \ |
Bram Moolenaar | 843ee41 | 2004-06-30 16:16:41 +0000 | [diff] [blame] | 1063 | objects/kvim_iface_skel.o |
| 1064 | KDE_DEFS = -DFEAT_GUI_KDE $(NARROW_PROTO) |
| 1065 | KDE_IPATH = $(GUI_INC_LOC) |
Bram Moolenaar | 2df6dcc | 2004-07-12 15:53:54 +0000 | [diff] [blame] | 1066 | KDE_LIBS_DIR = $(GUI_LIB_LOC) # Includes the libraries themselves |
| 1067 | KDE_DIR = $(KDE_PREFIX) |
Bram Moolenaar | 843ee41 | 2004-06-30 16:16:41 +0000 | [diff] [blame] | 1068 | KDE_LIBS1 = |
Bram Moolenaar | 2df6dcc | 2004-07-12 15:53:54 +0000 | [diff] [blame] | 1069 | KDE_LIBS2 = |
Bram Moolenaar | 843ee41 | 2004-06-30 16:16:41 +0000 | [diff] [blame] | 1070 | KDE_INSTALL = install_normal |
Bram Moolenaar | 2df6dcc | 2004-07-12 15:53:54 +0000 | [diff] [blame] | 1071 | KDE_TARGETS = installglinks installkdeicons |
Bram Moolenaar | b5bf5b8 | 2004-12-24 14:35:23 +0000 | [diff] [blame] | 1072 | KDE_MAN_TARGETS = yes |
Bram Moolenaar | 2df6dcc | 2004-07-12 15:53:54 +0000 | [diff] [blame] | 1073 | KDE_TESTTARGET = gui |
Bram Moolenaar | 843ee41 | 2004-06-30 16:16:41 +0000 | [diff] [blame] | 1074 | |
Bram Moolenaar | e1d1289 | 2004-06-13 13:02:36 +0000 | [diff] [blame] | 1075 | ### GTK GUI |
| 1076 | GTK_SRC = gui.c gui_gtk.c gui_gtk_x11.c pty.c gui_gtk_f.c \ |
| 1077 | gui_beval.c |
| 1078 | GTK_OBJ = objects/gui.o objects/gui_gtk.o objects/gui_gtk_x11.o \ |
| 1079 | objects/pty.o objects/gui_gtk_f.o \ |
| 1080 | objects/gui_beval.o |
| 1081 | GTK_DEFS = -DFEAT_GUI_GTK $(NARROW_PROTO) |
| 1082 | GTK_IPATH = $(GUI_INC_LOC) |
| 1083 | GTK_LIBS_DIR = $(GUI_LIB_LOC) |
| 1084 | GTK_LIBS1 = |
| 1085 | GTK_LIBS2 = $(GTK_LIBNAME) |
| 1086 | GTK_INSTALL = install_normal |
| 1087 | GTK_TARGETS = installglinks |
Bram Moolenaar | b5bf5b8 | 2004-12-24 14:35:23 +0000 | [diff] [blame] | 1088 | GTK_MAN_TARGETS = yes |
Bram Moolenaar | 2df6dcc | 2004-07-12 15:53:54 +0000 | [diff] [blame] | 1089 | GTK_TESTTARGET = gui |
Bram Moolenaar | e1d1289 | 2004-06-13 13:02:36 +0000 | [diff] [blame] | 1090 | |
| 1091 | ### Motif GUI |
Bram Moolenaar | dfccaf0 | 2004-12-31 20:56:11 +0000 | [diff] [blame] | 1092 | MOTIF_SRC = gui.c gui_motif.c gui_x11.c pty.c gui_beval.c \ |
Bram Moolenaar | b7fcef5 | 2005-01-02 11:31:05 +0000 | [diff] [blame] | 1093 | gui_xmdlg.c gui_xmebw.c |
Bram Moolenaar | e1d1289 | 2004-06-13 13:02:36 +0000 | [diff] [blame] | 1094 | MOTIF_OBJ = objects/gui.o objects/gui_motif.o objects/gui_x11.o \ |
Bram Moolenaar | dfccaf0 | 2004-12-31 20:56:11 +0000 | [diff] [blame] | 1095 | objects/pty.o objects/gui_beval.o \ |
Bram Moolenaar | b7fcef5 | 2005-01-02 11:31:05 +0000 | [diff] [blame] | 1096 | objects/gui_xmdlg.o objects/gui_xmebw.o |
Bram Moolenaar | e1d1289 | 2004-06-13 13:02:36 +0000 | [diff] [blame] | 1097 | MOTIF_DEFS = -DFEAT_GUI_MOTIF $(NARROW_PROTO) |
| 1098 | MOTIF_IPATH = $(GUI_INC_LOC) |
| 1099 | MOTIF_LIBS_DIR = $(GUI_LIB_LOC) |
| 1100 | MOTIF_LIBS1 = |
| 1101 | MOTIF_LIBS2 = $(MOTIF_LIBNAME) -lXt |
| 1102 | MOTIF_INSTALL = install_normal |
| 1103 | MOTIF_TARGETS = installglinks |
Bram Moolenaar | b5bf5b8 | 2004-12-24 14:35:23 +0000 | [diff] [blame] | 1104 | MOTIF_MAN_TARGETS = yes |
Bram Moolenaar | e1d1289 | 2004-06-13 13:02:36 +0000 | [diff] [blame] | 1105 | MOTIF_TESTTARGET = gui |
| 1106 | |
| 1107 | ### Athena GUI |
| 1108 | ### Use Xaw3d to make the menus look a little bit nicer |
| 1109 | #XAW_LIB = -lXaw3d |
| 1110 | XAW_LIB = -lXaw |
| 1111 | |
| 1112 | ### When using Xaw3d, uncomment/comment the following lines to also get the |
| 1113 | ### scrollbars from Xaw3d. |
| 1114 | #ATHENA_SRC = gui.c gui_athena.c gui_x11.c pty.c gui_beval.c gui_at_fs.c |
| 1115 | #ATHENA_OBJ = objects/gui.o objects/gui_athena.o objects/gui_x11.o \ |
| 1116 | # objects/pty.o objects/gui_beval.o objects/gui_at_fs.o |
| 1117 | #ATHENA_DEFS = -DFEAT_GUI_ATHENA $(NARROW_PROTO) \ |
| 1118 | # -Dvim_scrollbarWidgetClass=scrollbarWidgetClass \ |
| 1119 | # -Dvim_XawScrollbarSetThumb=XawScrollbarSetThumb |
| 1120 | ATHENA_SRC = gui.c gui_athena.c gui_x11.c pty.c gui_beval.c \ |
| 1121 | gui_at_sb.c gui_at_fs.c |
| 1122 | ATHENA_OBJ = objects/gui.o objects/gui_athena.o objects/gui_x11.o \ |
| 1123 | objects/pty.o objects/gui_beval.o \ |
| 1124 | objects/gui_at_sb.o objects/gui_at_fs.o |
| 1125 | ATHENA_DEFS = -DFEAT_GUI_ATHENA $(NARROW_PROTO) |
| 1126 | |
| 1127 | ATHENA_IPATH = $(GUI_INC_LOC) |
| 1128 | ATHENA_LIBS_DIR = $(GUI_LIB_LOC) |
| 1129 | ATHENA_LIBS1 = $(XAW_LIB) |
| 1130 | ATHENA_LIBS2 = -lXt |
| 1131 | ATHENA_INSTALL = install_normal |
| 1132 | ATHENA_TARGETS = installglinks |
Bram Moolenaar | b5bf5b8 | 2004-12-24 14:35:23 +0000 | [diff] [blame] | 1133 | ATHENA_MAN_TARGETS = yes |
Bram Moolenaar | e1d1289 | 2004-06-13 13:02:36 +0000 | [diff] [blame] | 1134 | ATHENA_TESTTARGET = gui |
| 1135 | |
| 1136 | ### neXtaw GUI |
| 1137 | NEXTAW_LIB = -lneXtaw |
| 1138 | |
| 1139 | NEXTAW_SRC = gui.c gui_athena.c gui_x11.c pty.c gui_beval.c gui_at_fs.c |
| 1140 | NEXTAW_OBJ = objects/gui.o objects/gui_athena.o objects/gui_x11.o \ |
| 1141 | objects/pty.o objects/gui_beval.o objects/gui_at_fs.o |
| 1142 | NEXTAW_DEFS = -DFEAT_GUI_ATHENA -DFEAT_GUI_NEXTAW $(NARROW_PROTO) |
| 1143 | |
| 1144 | NEXTAW_IPATH = $(GUI_INC_LOC) |
| 1145 | NEXTAW_LIBS_DIR = $(GUI_LIB_LOC) |
| 1146 | NEXTAW_LIBS1 = $(NEXTAW_LIB) |
| 1147 | NEXTAW_LIBS2 = -lXt |
| 1148 | NEXTAW_INSTALL = install_normal |
| 1149 | NEXTAW_TARGETS = installglinks |
Bram Moolenaar | b5bf5b8 | 2004-12-24 14:35:23 +0000 | [diff] [blame] | 1150 | NEXTAW_MAN_TARGETS = yes |
Bram Moolenaar | e1d1289 | 2004-06-13 13:02:36 +0000 | [diff] [blame] | 1151 | NEXTAW_TESTTARGET = gui |
| 1152 | |
| 1153 | ### (J) Sun OpenWindows 3.2 (SunOS 4.1.x) or earlier that produce these ld |
| 1154 | # errors: ld: Undefined symbol |
| 1155 | # _get_wmShellWidgetClass |
| 1156 | # _get_applicationShellWidgetClass |
| 1157 | # then you need to get patches 100512-02 and 100573-03 from Sun. In the |
| 1158 | # meantime, uncomment the following GUI_X_LIBS definition as a workaround: |
| 1159 | #GUI_X_LIBS = -Bstatic -lXmu -Bdynamic -lXext |
| 1160 | # If you also get cos, sin etc. as undefined symbols, try uncommenting this |
| 1161 | # too: |
| 1162 | #EXTRA_LIBS = /usr/openwin/lib/libXmu.sa -lm |
| 1163 | |
Bram Moolenaar | e1d1289 | 2004-06-13 13:02:36 +0000 | [diff] [blame] | 1164 | # PHOTON GUI |
| 1165 | PHOTONGUI_SRC = gui.c gui_photon.c pty.c |
| 1166 | PHOTONGUI_OBJ = objects/gui.o objects/gui_photon.o objects/pty.o |
| 1167 | PHOTONGUI_DEFS = -DFEAT_GUI_PHOTON |
| 1168 | PHOTONGUI_IPATH = |
| 1169 | PHOTONGUI_LIBS_DIR = |
| 1170 | PHOTONGUI_LIBS1 = -lph -lphexlib |
| 1171 | PHOTONGUI_LIBS2 = |
| 1172 | PHOTONGUI_INSTALL = install_normal |
| 1173 | PHOTONGUI_TARGETS = installglinks |
Bram Moolenaar | b5bf5b8 | 2004-12-24 14:35:23 +0000 | [diff] [blame] | 1174 | PHOTONGUI_MAN_TARGETS = yes |
Bram Moolenaar | e1d1289 | 2004-06-13 13:02:36 +0000 | [diff] [blame] | 1175 | PHOTONGUI_TESTTARGET = gui |
| 1176 | |
| 1177 | # CARBON GUI |
| 1178 | CARBONGUI_SRC = gui.c gui_mac.c |
| 1179 | CARBONGUI_OBJ = objects/gui.o objects/gui_mac.o objects/pty.o |
| 1180 | CARBONGUI_DEFS = -DFEAT_GUI_MAC -arch ppc -fno-common -fpascal-strings \ |
| 1181 | -Wall -Wno-unknown-pragmas \ |
| 1182 | -mdynamic-no-pic -pipe |
| 1183 | CARBONGUI_IPATH = -I. -Iproto |
| 1184 | CARBONGUI_LIBS_DIR = |
| 1185 | CARBONGUI_LIBS1 = -framework Carbon |
| 1186 | CARBONGUI_LIBS2 = |
| 1187 | CARBONGUI_INSTALL = install_macosx |
| 1188 | CARBONGUI_TARGETS = |
| 1189 | CARBONGUI_MAN_TARGETS = |
Bram Moolenaar | ab79bcb | 2004-07-18 21:34:53 +0000 | [diff] [blame] | 1190 | CARBONGUI_TESTTARGET = gui |
| 1191 | CARBONGUI_BUNDLE = $(VIMNAME).app |
| 1192 | CARBONGUI_TESTARG = VIMPROG=../$(CARBONGUI_BUNDLE)/Contents/MacOS/$(VIMTARGET) |
Bram Moolenaar | e1d1289 | 2004-06-13 13:02:36 +0000 | [diff] [blame] | 1193 | |
| 1194 | # All GUI files |
Bram Moolenaar | b7fcef5 | 2005-01-02 11:31:05 +0000 | [diff] [blame] | 1195 | ALL_GUI_SRC = gui.c gui_gtk.c gui_gtk_f.c gui_motif.c gui_xmdlg.c gui_xmebw.c gui_athena.c gui_gtk_x11.c gui_x11.c gui_at_sb.c gui_at_fs.c pty.c gui_kde.cc gui_kde_wid.cc gui_kde_x11.cc gui_kde_wid_moc.cc |
Bram Moolenaar | 323850c | 2005-01-04 21:24:54 +0000 | [diff] [blame] | 1196 | ALL_GUI_PRO = gui.pro gui_gtk.pro gui_motif.pro gui_xmdlg.pro gui_athena.pro gui_gtk_x11.pro gui_x11.pro gui_w16.pro gui_w32.pro gui_photon.pro |
Bram Moolenaar | e1d1289 | 2004-06-13 13:02:36 +0000 | [diff] [blame] | 1197 | |
| 1198 | # }}} |
| 1199 | |
| 1200 | ### Command to create dependencies based on #include "..." |
| 1201 | ### prototype headers are ignored due to -DPROTO, system |
| 1202 | ### headers #include <...> are ignored if we use the -MM option, as |
| 1203 | ### e.g. provided by gcc-cpp. |
| 1204 | ### Include FEAT_GUI to get gependency on gui.h |
| 1205 | CPP_DEPEND = $(CC) -I$(srcdir) -M$(CPP_MM) $(DEPEND_CFLAGS) |
| 1206 | |
| 1207 | # flags for cproto |
| 1208 | # This is for cproto 3 patchlevel 8 or below |
| 1209 | # __inline, __attribute__ and __extension__ are not recognized by cproto |
| 1210 | NO_ATTR = -D__inline= -D"__attribute__\\(x\\)=" -D"__asm__\\(x\\)=" -D__extension__= \ |
| 1211 | -D__restrict="" -D__gnuc_va_list=char -D__builtin_va_list=char |
| 1212 | |
| 1213 | # |
| 1214 | # This is for cproto 3 patchlevel 9 or above (currently 4.6) |
| 1215 | # __inline and __attribute__ are now recognized by cproto |
| 1216 | # -D"foo()=" is not supported by all compilers so do not use it |
| 1217 | # NO_ATTR= |
| 1218 | # |
| 1219 | # maybe the "/usr/bin/cc -E" has to be adjusted for some systems |
| 1220 | # This is for cproto 3.5 patchlevel 3: |
| 1221 | # PROTO_FLAGS = -f4 -m__ARGS -d -E"$(CPP)" $(NO_ATTR) |
| 1222 | # |
| 1223 | # Use this for cproto 3 patchlevel 6 or below (use "cproto -V" to check): |
| 1224 | # PROTO_FLAGS = -f4 -m__ARGS -d -E"$(CPP)" $(NO_ATTR) |
| 1225 | # |
| 1226 | # Use this for cproto 3 patchlevel 7 or above (use "cproto -V" to check): |
| 1227 | PROTO_FLAGS = -m -M__ARGS -d -E"$(CPP)" $(NO_ATTR) |
| 1228 | |
| 1229 | |
| 1230 | ################################################ |
| 1231 | ## no changes required below this line ## |
| 1232 | ################################################ |
| 1233 | |
| 1234 | SHELL = /bin/sh |
| 1235 | |
| 1236 | .SUFFIXES: |
| 1237 | .SUFFIXES: .cc .c .o .pro |
| 1238 | |
| 1239 | PRE_DEFS = -Iproto $(DEFS) $(GUI_DEFS) $(GUI_IPATH) $(CPPFLAGS) $(EXTRA_IPATHS) |
Bram Moolenaar | 325b7a2 | 2004-07-05 15:58:32 +0000 | [diff] [blame] | 1240 | POST_DEFS = $(X_CFLAGS) $(MZSCHEME_CFLAGS) $(PERL_CFLAGS) $(PYTHON_CFLAGS) $(TCL_CFLAGS) $(RUBY_CFLAGS) $(EXTRA_DEFS) |
Bram Moolenaar | e1d1289 | 2004-06-13 13:02:36 +0000 | [diff] [blame] | 1241 | |
| 1242 | ALL_CFLAGS = $(PRE_DEFS) $(CFLAGS) $(PROFILE_CFLAGS) $(POST_DEFS) |
| 1243 | |
| 1244 | LINT_CFLAGS = -DLINT -I. $(PRE_DEFS) $(POST_DEFS) -Dinline= -D__extension__= -Dalloca=alloca |
| 1245 | |
| 1246 | DEPEND_CFLAGS = -DPROTO -DDEPEND -DFEAT_GUI $(LINT_CFLAGS) |
| 1247 | |
| 1248 | PFLAGS = $(PROTO_FLAGS) -DPROTO $(LINT_CFLAGS) |
| 1249 | |
| 1250 | ALL_LIB_DIRS = $(GUI_LIBS_DIR) $(X_LIBS_DIR) |
Bram Moolenaar | 325b7a2 | 2004-07-05 15:58:32 +0000 | [diff] [blame] | 1251 | ALL_LIBS = $(GUI_LIBS1) $(GUI_X_LIBS) $(GUI_LIBS2) $(X_PRE_LIBS) $(X_LIBS) $(X_EXTRA_LIBS) $(LIBS) $(EXTRA_LIBS) $(MZSCHEME_LIBS) $(PERL_LIBS) $(PYTHON_LIBS) $(TCL_LIBS) $(RUBY_LIBS) $(PROFILE_LIBS) |
Bram Moolenaar | e1d1289 | 2004-06-13 13:02:36 +0000 | [diff] [blame] | 1252 | |
| 1253 | # abbreviations |
| 1254 | DEST_BIN = $(DESTDIR)$(BINDIR) |
| 1255 | DEST_VIM = $(DESTDIR)$(VIMLOC) |
| 1256 | DEST_RT = $(DESTDIR)$(VIMRTLOC) |
| 1257 | DEST_HELP = $(DESTDIR)$(HELPSUBLOC) |
| 1258 | DEST_COL = $(DESTDIR)$(COLSUBLOC) |
| 1259 | DEST_SYN = $(DESTDIR)$(SYNSUBLOC) |
| 1260 | DEST_IND = $(DESTDIR)$(INDSUBLOC) |
| 1261 | DEST_PLUG = $(DESTDIR)$(PLUGSUBLOC) |
| 1262 | DEST_FTP = $(DESTDIR)$(FTPLUGSUBLOC) |
| 1263 | DEST_LANG = $(DESTDIR)$(LANGSUBLOC) |
| 1264 | DEST_COMP = $(DESTDIR)$(COMPSUBLOC) |
| 1265 | DEST_KMAP = $(DESTDIR)$(KMAPSUBLOC) |
| 1266 | DEST_MACRO = $(DESTDIR)$(MACROSUBLOC) |
| 1267 | DEST_TOOLS = $(DESTDIR)$(TOOLSSUBLOC) |
| 1268 | DEST_TUTOR = $(DESTDIR)$(TUTORSUBLOC) |
| 1269 | DEST_SCRIPT = $(DESTDIR)$(SCRIPTLOC) |
| 1270 | DEST_PRINT = $(DESTDIR)$(PRINTSUBLOC) |
Bram Moolenaar | b5bf5b8 | 2004-12-24 14:35:23 +0000 | [diff] [blame] | 1271 | DEST_MAN_TOP = $(DESTDIR)$(MANDIR) |
| 1272 | DEST_MAN = $(DEST_MAN_TOP)$(MAN1DIR) |
| 1273 | DEST_MAN_IT = $(DEST_MAN_TOP)/it$(MAN1DIR) |
Bram Moolenaar | e1d1289 | 2004-06-13 13:02:36 +0000 | [diff] [blame] | 1274 | |
| 1275 | # BASIC_SRC: files that are always used |
| 1276 | # GUI_SRC: extra GUI files for current configuration |
| 1277 | # ALL_GUI_SRC: all GUI files for Unix |
| 1278 | # |
| 1279 | # SRC: files used for current configuration |
| 1280 | # TAGS_SRC: source files used for make tags |
| 1281 | # TAGS_INCL: include files used for make tags |
| 1282 | # ALL_SRC: source files used for make depend and make lint |
| 1283 | |
| 1284 | TAGS_INCL = *.h |
| 1285 | |
| 1286 | BASIC_SRC = \ |
| 1287 | buffer.c \ |
| 1288 | charset.c \ |
| 1289 | diff.c \ |
| 1290 | digraph.c \ |
| 1291 | edit.c \ |
| 1292 | eval.c \ |
| 1293 | ex_cmds.c \ |
| 1294 | ex_cmds2.c \ |
| 1295 | ex_docmd.c \ |
| 1296 | ex_eval.c \ |
| 1297 | ex_getln.c \ |
| 1298 | fileio.c \ |
| 1299 | fold.c \ |
| 1300 | getchar.c \ |
Bram Moolenaar | 383f9bc | 2005-01-19 22:18:32 +0000 | [diff] [blame] | 1301 | hashtable.c \ |
Bram Moolenaar | e1d1289 | 2004-06-13 13:02:36 +0000 | [diff] [blame] | 1302 | if_cscope.c \ |
| 1303 | if_xcmdsrv.c \ |
| 1304 | main.c \ |
| 1305 | mark.c \ |
| 1306 | memfile.c \ |
| 1307 | memline.c \ |
| 1308 | menu.c \ |
| 1309 | message.c \ |
| 1310 | misc1.c \ |
| 1311 | misc2.c \ |
| 1312 | move.c \ |
| 1313 | mbyte.c \ |
| 1314 | normal.c \ |
| 1315 | ops.c \ |
| 1316 | option.c \ |
| 1317 | os_unix.c \ |
| 1318 | auto/pathdef.c \ |
| 1319 | quickfix.c \ |
| 1320 | regexp.c \ |
| 1321 | screen.c \ |
| 1322 | search.c \ |
| 1323 | syntax.c \ |
| 1324 | tag.c \ |
| 1325 | term.c \ |
| 1326 | ui.c \ |
| 1327 | undo.c \ |
| 1328 | version.c \ |
| 1329 | window.c \ |
| 1330 | $(OS_EXTRA_SRC) |
| 1331 | |
Bram Moolenaar | 325b7a2 | 2004-07-05 15:58:32 +0000 | [diff] [blame] | 1332 | SRC = $(BASIC_SRC) $(GUI_SRC) $(HANGULIN_SRC) $(MZSCHEME_SRC) \ |
| 1333 | $(PERL_SRC) $(PYTHON_SRC) $(TCL_SRC) $(RUBY_SRC) \ |
| 1334 | $(SNIFF_SRC) $(WORKSHOP_SRC) $(WSDEBUG_SRC) |
Bram Moolenaar | e1d1289 | 2004-06-13 13:02:36 +0000 | [diff] [blame] | 1335 | |
Bram Moolenaar | 843ee41 | 2004-06-30 16:16:41 +0000 | [diff] [blame] | 1336 | TAGS_SRC = *.c *.cpp *.cc if_perl.xs |
Bram Moolenaar | e1d1289 | 2004-06-13 13:02:36 +0000 | [diff] [blame] | 1337 | |
Bram Moolenaar | 325b7a2 | 2004-07-05 15:58:32 +0000 | [diff] [blame] | 1338 | EXTRA_SRC = hangulin.c if_mzsch.c auto/if_perl.c if_perlsfio.c \ |
| 1339 | if_python.c if_tcl.c if_ruby.c if_sniff.c gui_beval.c \ |
| 1340 | workshop.c wsdebug.c integration.c netbeans.c |
Bram Moolenaar | e1d1289 | 2004-06-13 13:02:36 +0000 | [diff] [blame] | 1341 | |
| 1342 | # All sources, also the ones that are not configured |
| 1343 | ALL_SRC = $(BASIC_SRC) $(ALL_GUI_SRC) $(EXTRA_SRC) |
| 1344 | |
| 1345 | # Which files to check with lint. Select one of these three lines. ALL_SRC |
| 1346 | # checks more, but may not work well for checking a GUI that wasn't configured. |
| 1347 | # The perl sources also don't work well with lint. |
| 1348 | LINT_SRC = $(BASIC_SRC) $(GUI_SRC) $(HANGULIN_SRC) $(PYTHON_SRC) $(TCL_SRC) \ |
| 1349 | $(SNIFF_SRC) $(WORKSHOP_SRC) $(WSDEBUG_SRC) $(NETBEANS_SRC) |
| 1350 | #LINT_SRC = $(SRC) |
| 1351 | #LINT_SRC = $(ALL_SRC) |
| 1352 | |
| 1353 | OBJ = \ |
| 1354 | objects/buffer.o \ |
| 1355 | objects/charset.o \ |
| 1356 | objects/diff.o \ |
| 1357 | objects/digraph.o \ |
| 1358 | objects/edit.o \ |
| 1359 | objects/eval.o \ |
| 1360 | objects/ex_cmds.o \ |
| 1361 | objects/ex_cmds2.o \ |
| 1362 | objects/ex_docmd.o \ |
| 1363 | objects/ex_eval.o \ |
| 1364 | objects/ex_getln.o \ |
| 1365 | objects/fileio.o \ |
| 1366 | objects/fold.o \ |
| 1367 | objects/getchar.o \ |
Bram Moolenaar | 383f9bc | 2005-01-19 22:18:32 +0000 | [diff] [blame] | 1368 | objects/hashtable.o \ |
Bram Moolenaar | e1d1289 | 2004-06-13 13:02:36 +0000 | [diff] [blame] | 1369 | $(HANGULIN_OBJ) \ |
| 1370 | objects/if_cscope.o \ |
| 1371 | objects/if_xcmdsrv.o \ |
| 1372 | objects/main.o \ |
| 1373 | objects/mark.o \ |
| 1374 | objects/memfile.o \ |
| 1375 | objects/memline.o \ |
| 1376 | objects/menu.o \ |
| 1377 | objects/message.o \ |
| 1378 | objects/misc1.o \ |
| 1379 | objects/misc2.o \ |
| 1380 | objects/move.o \ |
| 1381 | objects/mbyte.o \ |
| 1382 | objects/normal.o \ |
| 1383 | objects/ops.o \ |
| 1384 | objects/option.o \ |
| 1385 | objects/os_unix.o \ |
| 1386 | objects/pathdef.o \ |
| 1387 | objects/quickfix.o \ |
| 1388 | objects/regexp.o \ |
| 1389 | objects/screen.o \ |
| 1390 | objects/search.o \ |
| 1391 | objects/syntax.o \ |
| 1392 | $(SNIFF_OBJ) \ |
| 1393 | objects/tag.o \ |
| 1394 | objects/term.o \ |
| 1395 | objects/ui.o \ |
| 1396 | objects/undo.o \ |
| 1397 | objects/window.o \ |
| 1398 | $(GUI_OBJ) \ |
Bram Moolenaar | 325b7a2 | 2004-07-05 15:58:32 +0000 | [diff] [blame] | 1399 | $(MZSCHEME_OBJ) \ |
Bram Moolenaar | e1d1289 | 2004-06-13 13:02:36 +0000 | [diff] [blame] | 1400 | $(PERL_OBJ) \ |
| 1401 | $(PYTHON_OBJ) \ |
| 1402 | $(TCL_OBJ) \ |
| 1403 | $(RUBY_OBJ) \ |
| 1404 | $(OS_EXTRA_OBJ) \ |
| 1405 | $(WORKSHOP_OBJ) \ |
| 1406 | $(NETBEANS_OBJ) \ |
| 1407 | $(WSDEBUG_OBJ) |
| 1408 | |
| 1409 | PRO_AUTO = \ |
| 1410 | buffer.pro \ |
| 1411 | charset.pro \ |
| 1412 | diff.pro \ |
| 1413 | digraph.pro \ |
| 1414 | edit.pro \ |
| 1415 | eval.pro \ |
| 1416 | ex_cmds.pro \ |
| 1417 | ex_cmds2.pro \ |
| 1418 | ex_docmd.pro \ |
| 1419 | ex_eval.pro \ |
| 1420 | ex_getln.pro \ |
| 1421 | fileio.pro \ |
| 1422 | fold.pro \ |
| 1423 | getchar.pro \ |
Bram Moolenaar | 383f9bc | 2005-01-19 22:18:32 +0000 | [diff] [blame] | 1424 | hashtable.pro \ |
Bram Moolenaar | e1d1289 | 2004-06-13 13:02:36 +0000 | [diff] [blame] | 1425 | hangulin.pro \ |
| 1426 | if_cscope.pro \ |
| 1427 | if_xcmdsrv.pro \ |
| 1428 | if_python.pro \ |
| 1429 | if_ruby.pro \ |
| 1430 | main.pro \ |
| 1431 | mark.pro \ |
| 1432 | memfile.pro \ |
| 1433 | memline.pro \ |
| 1434 | menu.pro \ |
| 1435 | message.pro \ |
| 1436 | misc1.pro \ |
| 1437 | misc2.pro \ |
| 1438 | move.pro \ |
| 1439 | mbyte.pro \ |
| 1440 | normal.pro \ |
| 1441 | ops.pro \ |
| 1442 | option.pro \ |
| 1443 | os_unix.pro \ |
| 1444 | quickfix.pro \ |
| 1445 | regexp.pro \ |
| 1446 | screen.pro \ |
| 1447 | search.pro \ |
| 1448 | syntax.pro \ |
| 1449 | tag.pro \ |
| 1450 | term.pro \ |
| 1451 | termlib.pro \ |
| 1452 | ui.pro \ |
| 1453 | undo.pro \ |
| 1454 | version.pro \ |
| 1455 | window.pro \ |
| 1456 | gui_beval.pro \ |
| 1457 | workshop.pro \ |
| 1458 | netbeans.pro \ |
| 1459 | $(ALL_GUI_PRO) \ |
| 1460 | $(TCL_PRO) |
| 1461 | |
| 1462 | PRO_MANUAL = os_amiga.pro os_msdos.pro os_win16.pro os_win32.pro \ |
| 1463 | os_mswin.pro os_beos.pro os_vms.pro os_riscos.pro $(PERL_PRO) |
| 1464 | |
| 1465 | # Default target is making the executable and tools |
Bram Moolenaar | ab79bcb | 2004-07-18 21:34:53 +0000 | [diff] [blame] | 1466 | all: $(VIMTARGET) $(TOOLS) languages $(GUI_BUNDLE) |
Bram Moolenaar | e1d1289 | 2004-06-13 13:02:36 +0000 | [diff] [blame] | 1467 | |
| 1468 | tools: $(TOOLS) |
| 1469 | |
| 1470 | # Run configure with all the setting from above. |
| 1471 | # |
| 1472 | # Note: auto/config.h doesn't depend on configure, because running configure |
| 1473 | # doesn't always update auto/config.h. The timestamp isn't changed if the |
| 1474 | # file contents didn't change (to avoid recompiling everything). Including a |
| 1475 | # dependency on auto/config.h would cause running configure each time when |
| 1476 | # auto/config.h isn't updated. The dependency on auto/config.mk should make |
| 1477 | # sure configure is run when it's needed. |
| 1478 | # |
| 1479 | config auto/config.mk: auto/configure config.mk.in config.h.in |
| 1480 | GUI_INC_LOC="$(GUI_INC_LOC)" GUI_LIB_LOC="$(GUI_LIB_LOC)" \ |
| 1481 | CC="$(CC)" CPPFLAGS="$(CPPFLAGS)" CFLAGS="$(CFLAGS)" \ |
| 1482 | LDFLAGS="$(LDFLAGS)" $(CONF_SHELL) srcdir="$(srcdir)" \ |
| 1483 | ./configure $(CONF_OPT_GUI) $(CONF_OPT_X) $(CONF_OPT_XSMP) \ |
| 1484 | $(CONF_OPT_DARWIN) $(CONF_OPT_PERL) $(CONF_OPT_PYTHON) \ |
| 1485 | $(CONF_OPT_TCL) $(CONF_OPT_RUBY) $(CONF_OPT_NLS) \ |
| 1486 | $(CONF_OPT_CSCOPE) $(CONF_OPT_MULTIBYTE) $(CONF_OPT_INPUT) \ |
| 1487 | $(CONF_OPT_OUTPUT) $(CONF_OPT_GPM) $(CONF_OPT_WORKSHOP) \ |
| 1488 | $(CONF_OPT_SNIFF) $(CONF_OPT_FEAT) $(CONF_TERM_LIB) \ |
| 1489 | $(CONF_OPT_COMPBY) $(CONF_OPT_ACL) $(CONF_OPT_NETBEANS) \ |
Bram Moolenaar | 325b7a2 | 2004-07-05 15:58:32 +0000 | [diff] [blame] | 1490 | $(CONF_ARGS) $(CONF_OPT_MZSCHEME) $(CONF_OPT_PLTHOME) |
Bram Moolenaar | e1d1289 | 2004-06-13 13:02:36 +0000 | [diff] [blame] | 1491 | |
| 1492 | # Use "make reconfig" to rerun configure without cached values. |
| 1493 | # When config.h changes, most things will be recompiled automatically. |
Bram Moolenaar | 592e0a2 | 2004-07-03 16:05:59 +0000 | [diff] [blame] | 1494 | # Invoke $(MAKE) to run config with the empty auto/config.mk. |
| 1495 | # Invoke $(MAKE) to build all with the filled auto/config.mk. |
| 1496 | reconfig: scratch clean |
| 1497 | $(MAKE) -f Makefile config |
| 1498 | $(MAKE) -f Makefile all |
Bram Moolenaar | e1d1289 | 2004-06-13 13:02:36 +0000 | [diff] [blame] | 1499 | |
| 1500 | # Run autoconf to produce auto/configure. |
| 1501 | # Note: |
| 1502 | # - DO NOT RUN autoconf MANUALLY! It will overwrite ./configure instead of |
| 1503 | # producing auto/configure. |
| 1504 | # - autoconf is not run automatically, because a patch usually changes both |
| 1505 | # configure.in and auto/configure but can't update the timestamps. People |
| 1506 | # who do not have (the correct version of) autoconf would run into trouble. |
| 1507 | # |
| 1508 | # Two tricks are required to make autoconf put its output in the "auto" dir: |
| 1509 | # - Temporarily move the ./configure script to ./configure.save. Don't |
| 1510 | # overwrite it, it's probably the result of an aborted autoconf. |
| 1511 | # - Use sed to change ./config.log to auto/config.log in the configure script. |
Bram Moolenaar | 9d75c83 | 2005-01-25 21:57:23 +0000 | [diff] [blame^] | 1512 | # Autoconf 2.5x (2.59 at least) produces a few more files that we need to take |
| 1513 | # care of: |
| 1514 | # - configure.lineno: has the line numbers replaced with $LINENO. That |
| 1515 | # improves patches a LOT, thus use it instead (until someone says it doesn't |
| 1516 | # work on some system). |
| 1517 | # - autom4te.cache directory is created and not cleaned up. Delete it. |
| 1518 | # - Uses ">config.log" instead of "./config.log". |
Bram Moolenaar | e1d1289 | 2004-06-13 13:02:36 +0000 | [diff] [blame] | 1519 | autoconf: |
| 1520 | if test ! -f configure.save; then mv configure configure.save; fi |
| 1521 | autoconf |
Bram Moolenaar | 9d75c83 | 2005-01-25 21:57:23 +0000 | [diff] [blame^] | 1522 | sed -e 's+>config.log+>auto/config.log+' -e 's+\./config.log+auto/config.log+' configure > auto/configure |
Bram Moolenaar | e1d1289 | 2004-06-13 13:02:36 +0000 | [diff] [blame] | 1523 | chmod 755 auto/configure |
| 1524 | mv -f configure.save configure |
Bram Moolenaar | 9d75c83 | 2005-01-25 21:57:23 +0000 | [diff] [blame^] | 1525 | -rm -rf autom4te.cache |
Bram Moolenaar | e1d1289 | 2004-06-13 13:02:36 +0000 | [diff] [blame] | 1526 | -rm -f auto/config.status auto/config.cache |
| 1527 | |
| 1528 | # Re-execute this Makefile to include the new auto/config.mk produced by |
| 1529 | # configure Only used when typing "make" with a fresh auto/config.mk. |
| 1530 | myself: |
| 1531 | $(MAKE) -f Makefile all |
| 1532 | |
| 1533 | |
| 1534 | # The normal command to compile a .c file to its .o file. |
| 1535 | CCC = $(CC) -c -I$(srcdir) $(ALL_CFLAGS) |
| 1536 | |
| 1537 | |
| 1538 | # Link the target for normal use or debugging. |
| 1539 | # A shell script is used to try linking without unneccesary libraries. |
| 1540 | $(VIMTARGET): auto/config.mk objects $(OBJ) version.c version.h |
| 1541 | $(CCC) version.c -o objects/version.o |
| 1542 | @LINK="$(PURIFY) $(SHRPENV) $(CClink) $(ALL_LIB_DIRS) $(LDFLAGS) \ |
| 1543 | -o $(VIMTARGET) $(OBJ) objects/version.o $(ALL_LIBS)" \ |
| 1544 | MAKE="$(MAKE)" sh $(srcdir)/link.sh |
| 1545 | |
| 1546 | xxd/xxd$(EXEEXT): xxd/xxd.c |
| 1547 | cd xxd; CC="$(CC)" CFLAGS="$(CPPFLAGS) $(CFLAGS)" \ |
| 1548 | $(MAKE) -f Makefile |
| 1549 | |
| 1550 | # Build the language specific files if they were unpacked. |
| 1551 | # Generate the converted .mo files separately, it's no problem if this fails. |
| 1552 | languages: |
| 1553 | @if test -n "$(MAKEMO)" -a -f $(PODIR)/Makefile; then \ |
| 1554 | cd $(PODIR); CC="$(CC)" $(MAKE) prefix=$(DESTDIR)$(prefix); \ |
| 1555 | fi |
| 1556 | -@if test -n "$(MAKEMO)" -a -f $(PODIR)/Makefile; then \ |
| 1557 | cd $(PODIR); CC="$(CC)" $(MAKE) prefix=$(DESTDIR)$(prefix) converted; \ |
| 1558 | fi |
| 1559 | |
| 1560 | # Update the *.po files for changes in the sources. Only run manually. |
| 1561 | update-po: |
| 1562 | cd $(PODIR); CC="$(CC)" $(MAKE) prefix=$(DESTDIR)$(prefix) update-po |
| 1563 | |
| 1564 | # Generate function prototypes. This is not needed to compile vim, but if |
| 1565 | # you want to use it, cproto is out there on the net somewhere -- Webb |
| 1566 | # |
| 1567 | # When generating os_amiga.pro, os_msdos.pro and os_win32.pro there will be a |
| 1568 | # few include files that can not be found, that's OK. |
| 1569 | |
| 1570 | proto: $(PRO_AUTO) $(PRO_MANUAL) |
| 1571 | |
| 1572 | ### Would be nice if this would work for "normal" make. |
| 1573 | ### Currently it only works for (Free)BSD make. |
| 1574 | #$(PRO_AUTO): $$(*F).c |
| 1575 | # cproto $(PFLAGS) -DFEAT_GUI $(*F).c > $@ |
| 1576 | |
| 1577 | # Always define FEAT_GUI. This may generate a few warnings if it's also |
| 1578 | # defined in auto/config.h, you can ignore that. |
| 1579 | .c.pro: |
| 1580 | cproto $(PFLAGS) -DFEAT_GUI $< > proto/$@ |
| 1581 | echo "/* vim: set ft=c : */" >> proto/$@ |
| 1582 | |
| 1583 | os_amiga.pro: os_amiga.c |
| 1584 | cproto $(PFLAGS) -DAMIGA -UHAVE_CONFIG_H -DBPTR=char* $< > proto/$@ |
| 1585 | echo "/* vim: set ft=c : */" >> proto/$@ |
| 1586 | |
| 1587 | os_msdos.pro: os_msdos.c |
| 1588 | cproto $(PFLAGS) -DMSDOS -UHAVE_CONFIG_H $< > proto/$@ |
| 1589 | echo "/* vim: set ft=c : */" >> proto/$@ |
| 1590 | |
| 1591 | os_win16.pro: os_win16.c |
| 1592 | cproto $(PFLAGS) -DWIN16 -UHAVE_CONFIG_H $< > proto/$@ |
| 1593 | echo "/* vim: set ft=c : */" >> proto/$@ |
| 1594 | |
| 1595 | os_win32.pro: os_win32.c |
| 1596 | cproto $(PFLAGS) -DWIN32 -UHAVE_CONFIG_H $< > proto/$@ |
| 1597 | echo "/* vim: set ft=c : */" >> proto/$@ |
| 1598 | |
| 1599 | os_mswin.pro: os_mswin.c |
| 1600 | cproto $(PFLAGS) -DWIN16 -DWIN32 -UHAVE_CONFIG_H $< > proto/$@ |
| 1601 | echo "/* vim: set ft=c : */" >> proto/$@ |
| 1602 | |
| 1603 | os_beos.pro: os_beos.c |
| 1604 | cproto $(PFLAGS) -D__BEOS__ -UHAVE_CONFIG_H $< > proto/$@ |
| 1605 | echo "/* vim: set ft=c : */" >> proto/$@ |
| 1606 | |
| 1607 | os_vms.pro: os_vms.c |
| 1608 | # must use os_vms_conf.h for auto/config.h |
| 1609 | mv auto/config.h auto/config.h.save |
| 1610 | cp os_vms_conf.h auto/config.h |
| 1611 | cproto $(PFLAGS) -DVMS -UFEAT_GUI_ATHENA -UFEAT_GUI_NEXTAW -UFEAT_GUI_MOTIF -UFEAT_GUI_GTK $< > proto/$@ |
| 1612 | echo "/* vim: set ft=c : */" >> proto/$@ |
| 1613 | rm auto/config.h |
| 1614 | mv auto/config.h.save auto/config.h |
| 1615 | |
| 1616 | # if_perl.pro is special: Use the generated if_perl.c for input and remove |
| 1617 | # prototypes for local functions. |
| 1618 | if_perl.pro: auto/if_perl.c |
| 1619 | cproto $(PFLAGS) -DFEAT_GUI auto/if_perl.c | sed "/_VI/d" > proto/$@ |
| 1620 | |
| 1621 | |
| 1622 | notags: |
| 1623 | -rm -f tags |
| 1624 | |
| 1625 | # Note: tags is made for the currently configured version, can't include both |
| 1626 | # Motif and Athena GUI |
| 1627 | # You can ignore error messages for missing files. |
| 1628 | tags TAGS: notags |
| 1629 | $(TAGPRG) $(TAGS_SRC) $(TAGS_INCL) |
| 1630 | |
| 1631 | # Make a highlight file for types. Requires Exuberant ctags and awk |
| 1632 | types: types.vim |
| 1633 | types.vim: $(TAGS_SRC) $(TAGS_INCL) |
| 1634 | ctags --c-kinds=gstu -o- $(TAGS_SRC) $(TAGS_INCL) |\ |
| 1635 | awk 'BEGIN{printf("syntax keyword Type\t")}\ |
| 1636 | {printf("%s ", $$1)}END{print ""}' > $@ |
| 1637 | |
| 1638 | # Execute the test scripts. Run these after compiling Vim, before installing. |
| 1639 | # This doesn't depend on $(VIMTARGET), because that won't work when configure |
| 1640 | # wasn't run yet. Restart make to build it instead. |
| 1641 | # |
| 1642 | # This will produce a lot of garbage on your screen, including a few error |
| 1643 | # messages. Don't worry about that. |
| 1644 | # If there is a real error, there will be a difference between "test.out" and |
| 1645 | # a "test99.ok" file. |
| 1646 | # If everything is allright, the final message will be "ALL DONE". |
| 1647 | # |
| 1648 | test check: |
| 1649 | $(MAKE) -f Makefile $(VIMTARGET) |
Bram Moolenaar | ab79bcb | 2004-07-18 21:34:53 +0000 | [diff] [blame] | 1650 | cd testdir; $(MAKE) -f Makefile $(GUI_TESTTARGET) VIMPROG=../$(VIMTARGET) $(GUI_TESTARG) |
Bram Moolenaar | e1d1289 | 2004-06-13 13:02:36 +0000 | [diff] [blame] | 1651 | |
| 1652 | testclean: |
| 1653 | cd testdir; $(MAKE) -f Makefile clean |
| 1654 | |
| 1655 | # |
| 1656 | # Avoid overwriting an existing executable, somebody might be running it and |
| 1657 | # overwriting it could cause it to crash. Deleting it is OK, it won't be |
| 1658 | # really deleted until all running processes for it have exited. It is |
| 1659 | # renamed first, in case the deleting doesn't work. |
| 1660 | # |
| 1661 | # If you want to keep an older version, rename it before running "make |
| 1662 | # install". |
| 1663 | # |
| 1664 | install: $(GUI_INSTALL) |
| 1665 | |
| 1666 | install_normal: installvim installtools install-languages install-icons |
| 1667 | |
Bram Moolenaar | b5bf5b8 | 2004-12-24 14:35:23 +0000 | [diff] [blame] | 1668 | installvim: installvimbin installruntime installlinks installmanlinks installmacros installtutor |
Bram Moolenaar | e1d1289 | 2004-06-13 13:02:36 +0000 | [diff] [blame] | 1669 | |
| 1670 | installvimbin: $(VIMTARGET) $(DESTDIR)$(exec_prefix) $(DEST_BIN) |
| 1671 | -if test -f $(DEST_BIN)/$(VIMTARGET); then \ |
| 1672 | mv -f $(DEST_BIN)/$(VIMTARGET) $(DEST_BIN)/$(VIMNAME).rm; \ |
| 1673 | rm -f $(DEST_BIN)/$(VIMNAME).rm; \ |
| 1674 | fi |
| 1675 | $(INSTALL_PROG) $(VIMTARGET) $(DEST_BIN) |
| 1676 | $(STRIP) $(DEST_BIN)/$(VIMTARGET) |
| 1677 | chmod $(BINMOD) $(DEST_BIN)/$(VIMTARGET) |
| 1678 | # may create a link to the new executable from /usr/bin/vi |
| 1679 | -$(LINKIT) |
| 1680 | |
Bram Moolenaar | b5bf5b8 | 2004-12-24 14:35:23 +0000 | [diff] [blame] | 1681 | # Long list of arguments for the shell script that installs the manual pages |
| 1682 | # for one language. |
| 1683 | INSTALLMANARGS = $(VIMLOC) $(SCRIPTLOC) $(VIMRCLOC) $(HELPSOURCE) $(MANMOD) \ |
| 1684 | $(VIMNAME) $(VIMDIFFNAME) $(EVIMNAME) |
| 1685 | |
| 1686 | # install the help files; first adjust the contents for the final location |
| 1687 | installruntime: $(HELPSOURCE)/vim.1 $(DEST_VIM) $(DEST_RT) \ |
Bram Moolenaar | e1d1289 | 2004-06-13 13:02:36 +0000 | [diff] [blame] | 1688 | $(DEST_HELP) $(DEST_PRINT) $(DEST_COL) $(DEST_SYN) $(DEST_IND) \ |
| 1689 | $(DEST_FTP) $(DEST_PLUG) $(DEST_TUTOR) $(DEST_COMP) |
Bram Moolenaar | b5bf5b8 | 2004-12-24 14:35:23 +0000 | [diff] [blame] | 1690 | -$(SHELL) ./installman.sh install $(DEST_MAN) "" $(INSTALLMANARGS) |
Bram Moolenaar | e1d1289 | 2004-06-13 13:02:36 +0000 | [diff] [blame] | 1691 | @echo generating help tags |
| 1692 | # Generate the help tags with ":helptags" to handle all languages. |
| 1693 | -@cd $(HELPSOURCE); $(MAKE) VIMEXE=$(DEST_BIN)/$(VIMTARGET) vimtags |
| 1694 | cd $(HELPSOURCE); \ |
| 1695 | files=`ls *.txt tags`; \ |
| 1696 | files="$$files `ls *.??x tags-?? 2>/dev/null || true`"; \ |
| 1697 | $(INSTALL_DATA) $$files $(DEST_HELP); \ |
| 1698 | cd $(DEST_HELP); \ |
| 1699 | chmod $(HELPMOD) $$files |
| 1700 | $(INSTALL_DATA) $(HELPSOURCE)/*.pl $(DEST_HELP) |
| 1701 | chmod $(SCRIPTMOD) $(DEST_HELP)/*.pl |
| 1702 | # install the menu files |
| 1703 | $(INSTALL_DATA) $(SCRIPTSOURCE)/menu.vim $(SYS_MENU_FILE) |
| 1704 | chmod $(VIMSCRIPTMOD) $(SYS_MENU_FILE) |
| 1705 | $(INSTALL_DATA) $(SCRIPTSOURCE)/synmenu.vim $(SYS_SYNMENU_FILE) |
| 1706 | chmod $(VIMSCRIPTMOD) $(SYS_SYNMENU_FILE) |
| 1707 | $(INSTALL_DATA) $(SCRIPTSOURCE)/delmenu.vim $(SYS_DELMENU_FILE) |
| 1708 | chmod $(VIMSCRIPTMOD) $(SYS_DELMENU_FILE) |
| 1709 | # install the evim file |
| 1710 | $(INSTALL_DATA) $(SCRIPTSOURCE)/mswin.vim $(MSWIN_FILE) |
| 1711 | chmod $(VIMSCRIPTMOD) $(MSWIN_FILE) |
| 1712 | $(INSTALL_DATA) $(SCRIPTSOURCE)/evim.vim $(EVIM_FILE) |
| 1713 | chmod $(VIMSCRIPTMOD) $(EVIM_FILE) |
| 1714 | # install the bugreport file |
| 1715 | $(INSTALL_DATA) $(SCRIPTSOURCE)/bugreport.vim $(SYS_BUGR_FILE) |
| 1716 | chmod $(VIMSCRIPTMOD) $(SYS_BUGR_FILE) |
| 1717 | # install the example vimrc files |
| 1718 | $(INSTALL_DATA) $(SCRIPTSOURCE)/vimrc_example.vim $(DEST_SCRIPT) |
| 1719 | chmod $(VIMSCRIPTMOD) $(DEST_SCRIPT)/vimrc_example.vim |
| 1720 | $(INSTALL_DATA) $(SCRIPTSOURCE)/gvimrc_example.vim $(DEST_SCRIPT) |
| 1721 | chmod $(VIMSCRIPTMOD) $(DEST_SCRIPT)/gvimrc_example.vim |
| 1722 | # install the file type detection files |
| 1723 | $(INSTALL_DATA) $(SCRIPTSOURCE)/filetype.vim $(SYS_FILETYPE_FILE) |
| 1724 | chmod $(VIMSCRIPTMOD) $(SYS_FILETYPE_FILE) |
| 1725 | $(INSTALL_DATA) $(SCRIPTSOURCE)/ftoff.vim $(SYS_FTOFF_FILE) |
| 1726 | chmod $(VIMSCRIPTMOD) $(SYS_FTOFF_FILE) |
| 1727 | $(INSTALL_DATA) $(SCRIPTSOURCE)/scripts.vim $(SYS_SCRIPTS_FILE) |
| 1728 | chmod $(VIMSCRIPTMOD) $(SYS_SCRIPTS_FILE) |
| 1729 | $(INSTALL_DATA) $(SCRIPTSOURCE)/ftplugin.vim $(SYS_FTPLUGIN_FILE) |
| 1730 | chmod $(VIMSCRIPTMOD) $(SYS_FTPLUGIN_FILE) |
| 1731 | $(INSTALL_DATA) $(SCRIPTSOURCE)/ftplugof.vim $(SYS_FTPLUGOF_FILE) |
| 1732 | chmod $(VIMSCRIPTMOD) $(SYS_FTPLUGOF_FILE) |
| 1733 | $(INSTALL_DATA) $(SCRIPTSOURCE)/indent.vim $(SYS_INDENT_FILE) |
| 1734 | chmod $(VIMSCRIPTMOD) $(SYS_INDENT_FILE) |
| 1735 | $(INSTALL_DATA) $(SCRIPTSOURCE)/indoff.vim $(SYS_INDOFF_FILE) |
| 1736 | chmod $(VIMSCRIPTMOD) $(SYS_INDOFF_FILE) |
| 1737 | $(INSTALL_DATA) $(SCRIPTSOURCE)/optwin.vim $(SYS_OPTWIN_FILE) |
| 1738 | chmod $(VIMSCRIPTMOD) $(SYS_OPTWIN_FILE) |
| 1739 | # install the print resource files |
| 1740 | cd $(PRINTSOURCE); $(INSTALL_DATA) *.ps $(DEST_PRINT) |
| 1741 | cd $(DEST_PRINT); chmod $(FILEMOD) *.ps |
| 1742 | # install the colorscheme files |
| 1743 | cd $(COLSOURCE); $(INSTALL_DATA) *.vim README.txt $(DEST_COL) |
| 1744 | cd $(DEST_COL); chmod $(HELPMOD) *.vim README.txt |
| 1745 | # install the syntax files |
| 1746 | cd $(SYNSOURCE); $(INSTALL_DATA) *.vim README.txt $(DEST_SYN) |
| 1747 | cd $(DEST_SYN); chmod $(HELPMOD) *.vim README.txt |
| 1748 | # install the indent files |
| 1749 | cd $(INDSOURCE); $(INSTALL_DATA) *.vim README.txt $(DEST_IND) |
| 1750 | cd $(DEST_IND); chmod $(HELPMOD) *.vim README.txt |
| 1751 | # install the standard plugin files |
| 1752 | cd $(PLUGSOURCE); $(INSTALL_DATA) *.vim README.txt $(DEST_PLUG) |
| 1753 | cd $(DEST_PLUG); chmod $(HELPMOD) *.vim README.txt |
| 1754 | # install the ftplugin files |
| 1755 | cd $(FTPLUGSOURCE); $(INSTALL_DATA) *.vim README.txt $(DEST_FTP) |
| 1756 | cd $(DEST_FTP); chmod $(HELPMOD) *.vim README.txt |
| 1757 | # install the compiler files |
| 1758 | cd $(COMPSOURCE); $(INSTALL_DATA) *.vim README.txt $(DEST_COMP) |
| 1759 | cd $(DEST_COMP); chmod $(HELPMOD) *.vim README.txt |
| 1760 | |
| 1761 | installmacros: $(MACROSOURCE) $(DEST_VIM) $(DEST_RT) $(DEST_MACRO) |
| 1762 | $(INSTALL_DATA_R) $(MACROSOURCE)/* $(DEST_MACRO) |
| 1763 | chmod $(DIRMOD) `find $(DEST_MACRO) -type d -print` |
| 1764 | chmod $(FILEMOD) `find $(DEST_MACRO) -type f -print` |
| 1765 | chmod $(SCRIPTMOD) $(DEST_MACRO)/less.sh |
| 1766 | # When using CVS some CVS directories might have been copied. |
| 1767 | cvs=`find $(DEST_MACRO) \( -name CVS -o -name AAPDIR \) -print`; \ |
| 1768 | if test -n "$$cvs"; then \ |
| 1769 | rm -rf $$cvs; \ |
| 1770 | fi |
| 1771 | |
| 1772 | # install the tutor files |
| 1773 | installtutor: $(TUTORSOURCE) $(DEST_VIM) $(DEST_RT) $(DEST_TUTOR) |
| 1774 | $(INSTALL_DATA) vimtutor $(DEST_BIN)/$(VIMNAME)tutor |
| 1775 | chmod $(SCRIPTMOD) $(DEST_BIN)/$(VIMNAME)tutor |
| 1776 | -$(INSTALL_DATA) $(TUTORSOURCE)/README* $(TUTORSOURCE)/tutor* $(DEST_TUTOR) |
| 1777 | chmod $(HELPMOD) $(DEST_TUTOR)/* |
| 1778 | |
| 1779 | # install helper program xxd |
Bram Moolenaar | b5bf5b8 | 2004-12-24 14:35:23 +0000 | [diff] [blame] | 1780 | installtools: $(TOOLS) $(DESTDIR)$(exec_prefix) $(DEST_BIN) \ |
Bram Moolenaar | e1d1289 | 2004-06-13 13:02:36 +0000 | [diff] [blame] | 1781 | $(TOOLSSOURCE) $(DEST_VIM) $(DEST_RT) $(DEST_TOOLS) |
| 1782 | if test -f $(DEST_BIN)/xxd$(EXEEXT); then \ |
| 1783 | mv -f $(DEST_BIN)/xxd$(EXEEXT) $(DEST_BIN)/xxd.rm; \ |
| 1784 | rm -f $(DEST_BIN)/xxd.rm; \ |
| 1785 | fi |
| 1786 | $(INSTALL_PROG) xxd/xxd$(EXEEXT) $(DEST_BIN) |
| 1787 | $(STRIP) $(DEST_BIN)/xxd$(EXEEXT) |
| 1788 | chmod $(BINMOD) $(DEST_BIN)/xxd$(EXEEXT) |
Bram Moolenaar | b5bf5b8 | 2004-12-24 14:35:23 +0000 | [diff] [blame] | 1789 | -$(SHELL) ./installman.sh xxd $(DEST_MAN) "" $(INSTALLMANARGS) |
| 1790 | -$(SHELL) ./installman.sh xxd $(DEST_MAN_IT) "-it" $(INSTALLMANARGS) |
Bram Moolenaar | e1d1289 | 2004-06-13 13:02:36 +0000 | [diff] [blame] | 1791 | # install the runtime tools |
| 1792 | $(INSTALL_DATA_R) $(TOOLSSOURCE)/* $(DEST_TOOLS) |
| 1793 | # When using CVS some CVS directories might have been copied. |
| 1794 | cvs=`find $(DEST_TOOLS) \( -name CVS -o -name AAPDIR \) -print`; \ |
| 1795 | if test -n "$$cvs"; then \ |
| 1796 | rm -rf $$cvs; \ |
| 1797 | fi |
| 1798 | -chmod $(FILEMOD) $(DEST_TOOLS)/* |
| 1799 | # replace the path in some tools |
| 1800 | perlpath=`./which.sh perl` && sed -e "s+/usr/bin/perl+$$perlpath+" $(TOOLSSOURCE)/efm_perl.pl >$(DEST_TOOLS)/efm_perl.pl |
| 1801 | awkpath=`./which.sh nawk` && sed -e "s+/usr/bin/nawk+$$awkpath+" $(TOOLSSOURCE)/mve.awk >$(DEST_TOOLS)/mve.awk; if test -z "$$awkpath"; then \ |
| 1802 | awkpath=`./which.sh gawk` && sed -e "s+/usr/bin/nawk+$$awkpath+" $(TOOLSSOURCE)/mve.awk >$(DEST_TOOLS)/mve.awk; if test -z "$$awkpath"; then \ |
| 1803 | awkpath=`./which.sh awk` && sed -e "s+/usr/bin/nawk+$$awkpath+" $(TOOLSSOURCE)/mve.awk >$(DEST_TOOLS)/mve.awk; fi; fi |
| 1804 | -chmod $(SCRIPTMOD) `grep -l "^#!" $(DEST_TOOLS)/*` |
| 1805 | |
| 1806 | # install the language specific files, if they were unpacked |
| 1807 | install-languages: languages $(DEST_LANG) $(DEST_KMAP) |
Bram Moolenaar | b5bf5b8 | 2004-12-24 14:35:23 +0000 | [diff] [blame] | 1808 | -$(SHELL) ./installman.sh install $(DEST_MAN_IT) "-it" $(INSTALLMANARGS) |
| 1809 | -$(SHELL) ./installml.sh install "$(GUI_MAN_TARGETS)" \ |
| 1810 | $(DEST_MAN_IT) $(INSTALLMLARGS) |
Bram Moolenaar | e1d1289 | 2004-06-13 13:02:36 +0000 | [diff] [blame] | 1811 | if test -n "$(MAKEMO)" -a -f $(PODIR)/Makefile; then \ |
| 1812 | cd $(PODIR); $(MAKE) prefix=$(DESTDIR)$(prefix) LOCALEDIR=$(DEST_LANG) \ |
| 1813 | INSTALL_DATA=$(INSTALL_DATA) FILEMOD=$(FILEMOD) install; \ |
| 1814 | fi |
| 1815 | if test -d $(LANGSOURCE); then \ |
| 1816 | $(INSTALL_DATA) $(LANGSOURCE)/README.txt $(LANGSOURCE)/*.vim $(DEST_LANG); \ |
| 1817 | chmod $(FILEMOD) $(DEST_LANG)/README.txt $(DEST_LANG)/*.vim; \ |
| 1818 | fi |
| 1819 | if test -d $(KMAPSOURCE); then \ |
| 1820 | $(INSTALL_DATA) $(KMAPSOURCE)/README.txt $(KMAPSOURCE)/*.vim $(DEST_KMAP); \ |
| 1821 | chmod $(FILEMOD) $(DEST_KMAP)/README.txt $(DEST_KMAP)/*.vim; \ |
| 1822 | fi |
| 1823 | |
Bram Moolenaar | 2df6dcc | 2004-07-12 15:53:54 +0000 | [diff] [blame] | 1824 | # Install the icons for the KDE GUI. This differs from the KDE icons for |
| 1825 | # other GUIs. |
Bram Moolenaar | 843ee41 | 2004-06-30 16:16:41 +0000 | [diff] [blame] | 1826 | installkdeicons: |
| 1827 | mkdir -p $(DESTDIR)$(KDE_DIR)/share/applnk/Editors/ |
| 1828 | mkdir -p $(DESTDIR)$(KDE_DIR)/share/icons/hicolor/32x32/apps/ |
| 1829 | mkdir -p $(DESTDIR)$(KDE_DIR)/share/icons/hicolor/48x48/apps/ |
| 1830 | mkdir -p $(DESTDIR)$(KDE_DIR)/share/icons/hicolor/22x22/actions/ |
| 1831 | mkdir -p $(DESTDIR)$(KDE_DIR)/share/icons/hicolor/16x16/actions/ |
| 1832 | mkdir -p $(DESTDIR)$(KDE_DIR)/share/apps/kvim |
| 1833 | |
| 1834 | cp ../runtime/KVim.desktop $(DESTDIR)$(KDE_DIR)/share/applnk/Editors/ && chmod 644 $(DESTDIR)$(KDE_DIR)/share/applnk/Editors/KVim.desktop |
| 1835 | cp ../runtime/kvim32x32.png $(DESTDIR)$(KDE_DIR)/share/icons/hicolor/32x32/apps/kvim.png && chmod 644 $(DESTDIR)$(KDE_DIR)/share/icons/hicolor/32x32/apps/kvim.png |
| 1836 | cp ../runtime/kvim48x48.png $(DESTDIR)$(KDE_DIR)/share/icons/hicolor/48x48/apps/kvim.png && chmod 644 $(DESTDIR)$(KDE_DIR)/share/icons/hicolor/48x48/apps/kvim.png |
| 1837 | cp ../runtime/hi16-action-make.png $(DESTDIR)$(KDE_DIR)/share/icons/hicolor/16x16/actions/hi16-action-make.png |
| 1838 | cp ../runtime/hi22-action-make.png $(DESTDIR)$(KDE_DIR)/share/icons/hicolor/22x22/actions/hi22-action-make.png |
| 1839 | cp ../runtime/kde-tips $(DESTDIR)$(KDE_DIR)/share/apps/kvim/tips && chmod 644 $(DESTDIR)$(KDE_DIR)/share/apps/kvim/tips |
| 1840 | |
Bram Moolenaar | 2df6dcc | 2004-07-12 15:53:54 +0000 | [diff] [blame] | 1841 | # install the icons for KDE, if the directory exists and the icon doesn't. |
Bram Moolenaar | e1d1289 | 2004-06-13 13:02:36 +0000 | [diff] [blame] | 1842 | ICON48PATH = $(DESTDIR)$(DATADIR)/icons/hicolor/48x48/apps |
| 1843 | ICON32PATH = $(DESTDIR)$(DATADIR)/icons/locolor/32x32/apps |
| 1844 | ICON16PATH = $(DESTDIR)$(DATADIR)/icons/locolor/16x16/apps |
| 1845 | KDEPATH = $(HOME)/.kde/share/icons |
| 1846 | install-icons: |
| 1847 | if test -d $(ICON48PATH) -a -w $(ICON48PATH) \ |
| 1848 | -a ! -f $(ICON48PATH)/gvim.png; then \ |
| 1849 | $(INSTALL_DATA) $(SCRIPTSOURCE)/vim48x48.png $(ICON48PATH)/gvim.png; \ |
| 1850 | fi |
| 1851 | if test -d $(ICON32PATH) -a -w $(ICON32PATH) \ |
| 1852 | -a ! -f $(ICON32PATH)/gvim.png; then \ |
| 1853 | $(INSTALL_DATA) $(SCRIPTSOURCE)/vim32x32.png $(ICON32PATH)/gvim.png; \ |
| 1854 | fi |
| 1855 | if test -d $(ICON16PATH) -a -w $(ICON16PATH) \ |
| 1856 | -a ! -f $(ICON16PATH)/gvim.png; then \ |
| 1857 | $(INSTALL_DATA) $(SCRIPTSOURCE)/vim16x16.png $(ICON16PATH)/gvim.png; \ |
| 1858 | fi |
| 1859 | |
| 1860 | |
| 1861 | $(HELPSOURCE)/vim.1 $(MACROSOURCE) $(TOOLSSOURCE): |
| 1862 | @echo Runtime files not found. |
| 1863 | @echo You need to unpack the runtime archive before running "make install". |
| 1864 | test -f error |
| 1865 | |
Bram Moolenaar | b5bf5b8 | 2004-12-24 14:35:23 +0000 | [diff] [blame] | 1866 | $(DESTDIR)$(exec_prefix) $(DEST_BIN) \ |
| 1867 | $(DEST_VIM) $(DEST_RT) $(DEST_HELP) \ |
Bram Moolenaar | e1d1289 | 2004-06-13 13:02:36 +0000 | [diff] [blame] | 1868 | $(DEST_PRINT) $(DEST_COL) $(DEST_SYN) $(DEST_IND) $(DEST_FTP) \ |
| 1869 | $(DEST_LANG) $(DEST_KMAP) $(DEST_COMP) \ |
| 1870 | $(DEST_MACRO) $(DEST_TOOLS) $(DEST_TUTOR) $(DEST_PLUG): |
| 1871 | -$(SHELL) ./mkinstalldirs $@ |
| 1872 | -chmod $(DIRMOD) $@ |
| 1873 | |
| 1874 | # create links from various names to vim. This is only done when the links |
| 1875 | # (or executables with the same name) don't exist yet. |
| 1876 | installlinks: $(GUI_TARGETS) \ |
| 1877 | $(DEST_BIN)/$(EXTARGET) \ |
| 1878 | $(DEST_BIN)/$(VIEWTARGET) \ |
| 1879 | $(DEST_BIN)/$(RVIMTARGET) \ |
| 1880 | $(DEST_BIN)/$(RVIEWTARGET) \ |
| 1881 | $(INSTALLVIMDIFF) |
| 1882 | |
| 1883 | installglinks: $(DEST_BIN)/$(GVIMTARGET) \ |
| 1884 | $(DEST_BIN)/$(GVIEWTARGET) \ |
| 1885 | $(DEST_BIN)/$(RGVIMTARGET) \ |
| 1886 | $(DEST_BIN)/$(RGVIEWTARGET) \ |
| 1887 | $(DEST_BIN)/$(EVIMTARGET) \ |
| 1888 | $(DEST_BIN)/$(EVIEWTARGET) \ |
| 1889 | $(INSTALLGVIMDIFF) |
| 1890 | |
| 1891 | installvimdiff: $(DEST_BIN)/$(VIMDIFFTARGET) |
| 1892 | installgvimdiff: $(DEST_BIN)/$(GVIMDIFFTARGET) |
| 1893 | |
| 1894 | $(DEST_BIN)/$(EXTARGET): |
| 1895 | cd $(DEST_BIN); ln -s $(VIMTARGET) $(EXTARGET) |
| 1896 | |
| 1897 | $(DEST_BIN)/$(VIEWTARGET): |
| 1898 | cd $(DEST_BIN); ln -s $(VIMTARGET) $(VIEWTARGET) |
| 1899 | |
| 1900 | $(DEST_BIN)/$(GVIMTARGET): |
| 1901 | cd $(DEST_BIN); ln -s $(VIMTARGET) $(GVIMTARGET) |
| 1902 | |
| 1903 | $(DEST_BIN)/$(GVIEWTARGET): |
| 1904 | cd $(DEST_BIN); ln -s $(VIMTARGET) $(GVIEWTARGET) |
| 1905 | |
| 1906 | $(DEST_BIN)/$(RVIMTARGET): |
| 1907 | cd $(DEST_BIN); ln -s $(VIMTARGET) $(RVIMTARGET) |
| 1908 | |
| 1909 | $(DEST_BIN)/$(RVIEWTARGET): |
| 1910 | cd $(DEST_BIN); ln -s $(VIMTARGET) $(RVIEWTARGET) |
| 1911 | |
| 1912 | $(DEST_BIN)/$(RGVIMTARGET): |
| 1913 | cd $(DEST_BIN); ln -s $(VIMTARGET) $(RGVIMTARGET) |
| 1914 | |
| 1915 | $(DEST_BIN)/$(RGVIEWTARGET): |
| 1916 | cd $(DEST_BIN); ln -s $(VIMTARGET) $(RGVIEWTARGET) |
| 1917 | |
| 1918 | $(DEST_BIN)/$(VIMDIFFTARGET): |
| 1919 | cd $(DEST_BIN); ln -s $(VIMTARGET) $(VIMDIFFTARGET) |
| 1920 | |
| 1921 | $(DEST_BIN)/$(GVIMDIFFTARGET): |
| 1922 | cd $(DEST_BIN); ln -s $(VIMTARGET) $(GVIMDIFFTARGET) |
| 1923 | |
| 1924 | $(DEST_BIN)/$(EVIMTARGET): |
| 1925 | cd $(DEST_BIN); ln -s $(VIMTARGET) $(EVIMTARGET) |
| 1926 | |
| 1927 | $(DEST_BIN)/$(EVIEWTARGET): |
| 1928 | cd $(DEST_BIN); ln -s $(VIMTARGET) $(EVIEWTARGET) |
| 1929 | |
| 1930 | # create links for the manual pages with various names to vim. This is only |
| 1931 | # done when the links (or manpages with the same name) don't exist yet. |
Bram Moolenaar | e1d1289 | 2004-06-13 13:02:36 +0000 | [diff] [blame] | 1932 | |
Bram Moolenaar | b5bf5b8 | 2004-12-24 14:35:23 +0000 | [diff] [blame] | 1933 | INSTALLMLARGS = $(VIMNAME) $(VIMDIFFNAME) $(EVIMNAME) \ |
| 1934 | $(EXNAME) $(VIEWNAME) $(RVIMNAME) $(RVIEWNAME) \ |
| 1935 | $(GVIMNAME) $(GVIEWNAME) $(RGVIMNAME) $(RGVIEWNAME) \ |
| 1936 | $(GVIMDIFFNAME) $(EVIEWNAME) |
Bram Moolenaar | e1d1289 | 2004-06-13 13:02:36 +0000 | [diff] [blame] | 1937 | |
Bram Moolenaar | b5bf5b8 | 2004-12-24 14:35:23 +0000 | [diff] [blame] | 1938 | installmanlinks: |
| 1939 | -$(SHELL) ./installml.sh install "$(GUI_MAN_TARGETS)" \ |
| 1940 | $(DEST_MAN) $(INSTALLMLARGS) |
Bram Moolenaar | e1d1289 | 2004-06-13 13:02:36 +0000 | [diff] [blame] | 1941 | |
| 1942 | uninstall: uninstall_runtime |
| 1943 | -rm -f $(DEST_BIN)/$(VIMTARGET) |
Bram Moolenaar | e1d1289 | 2004-06-13 13:02:36 +0000 | [diff] [blame] | 1944 | -rm -f $(DEST_BIN)/vimtutor |
Bram Moolenaar | e1d1289 | 2004-06-13 13:02:36 +0000 | [diff] [blame] | 1945 | -rm -f $(DEST_BIN)/$(EXTARGET) $(DEST_BIN)/$(VIEWTARGET) |
| 1946 | -rm -f $(DEST_BIN)/$(GVIMTARGET) $(DEST_BIN)/$(GVIEWTARGET) |
| 1947 | -rm -f $(DEST_BIN)/$(RVIMTARGET) $(DEST_BIN)/$(RVIEWTARGET) |
| 1948 | -rm -f $(DEST_BIN)/$(RGVIMTARGET) $(DEST_BIN)/$(RGVIEWTARGET) |
| 1949 | -rm -f $(DEST_BIN)/$(VIMDIFFTARGET) $(DEST_BIN)/$(GVIMDIFFTARGET) |
| 1950 | -rm -f $(DEST_BIN)/$(EVIMTARGET) $(DEST_BIN)/$(EVIEWTARGET) |
Bram Moolenaar | b5bf5b8 | 2004-12-24 14:35:23 +0000 | [diff] [blame] | 1951 | -rm -f $(DEST_BIN)/xxd$(EXEEXT) |
Bram Moolenaar | e1d1289 | 2004-06-13 13:02:36 +0000 | [diff] [blame] | 1952 | |
| 1953 | # Note: the "rmdir" will fail if any files were added after "make install" |
| 1954 | uninstall_runtime: |
Bram Moolenaar | b5bf5b8 | 2004-12-24 14:35:23 +0000 | [diff] [blame] | 1955 | -$(SHELL) ./installman.sh uninstall $(DEST_MAN) "" $(INSTALLMANARGS) |
| 1956 | -$(SHELL) ./installman.sh uninstall $(DEST_MAN_IT) "-it" $(INSTALLMANARGS) |
| 1957 | -$(SHELL) ./installml.sh uninstall "$(GUI_MAN_TARGETS)" \ |
| 1958 | $(DEST_MAN) $(INSTALLMLARGS) |
| 1959 | -$(SHELL) ./installml.sh uninstall "$(GUI_MAN_TARGETS)" \ |
| 1960 | $(DEST_MAN_IT) $(INSTALLMLARGS) |
| 1961 | -rm -f $(DEST_MAN)/xxd.1 $(DEST_MAN_IT)/xxd.1 |
Bram Moolenaar | e1d1289 | 2004-06-13 13:02:36 +0000 | [diff] [blame] | 1962 | -rm -f $(DEST_HELP)/*.txt $(DEST_HELP)/tags $(DEST_HELP)/*.pl |
| 1963 | -rm -f $(DEST_HELP)/*.??x $(DEST_HELP)/tags-?? |
| 1964 | -rm -f $(SYS_MENU_FILE) $(SYS_SYNMENU_FILE) $(SYS_DELMENU_FILE) |
| 1965 | -rm -f $(SYS_BUGR_FILE) $(EVIM_FILE) $(MSWIN_FILE) |
| 1966 | -rm -f $(DEST_SCRIPT)/gvimrc_example.vim $(DEST_SCRIPT)/vimrc_example.vim |
| 1967 | -rm -f $(SYS_FILETYPE_FILE) $(SYS_FTOFF_FILE) $(SYS_SCRIPTS_FILE) |
| 1968 | -rm -f $(SYS_INDOFF_FILE) $(SYS_INDENT_FILE) |
| 1969 | -rm -f $(SYS_FTPLUGOF_FILE) $(SYS_FTPLUGIN_FILE) |
| 1970 | -rm -f $(SYS_OPTWIN_FILE) |
| 1971 | -rm -f $(DEST_COL)/*.vim $(DEST_COL)/README.txt |
| 1972 | -rm -f $(DEST_SYN)/*.vim $(DEST_SYN)/README.txt |
| 1973 | -rm -f $(DEST_IND)/*.vim $(DEST_IND)/README.txt |
| 1974 | -rm -rf $(DEST_MACRO) |
| 1975 | -rm -rf $(DEST_TUTOR) |
| 1976 | -rm -rf $(DEST_TOOLS) |
| 1977 | -rm -rf $(DEST_LANG) |
| 1978 | -rm -rf $(DEST_KMAP) |
| 1979 | -rm -rf $(DEST_COMP) |
| 1980 | -rm -f $(DEST_PRINT)/*.ps |
| 1981 | -rmdir $(DEST_HELP) $(DEST_PRINT) $(DEST_COL) $(DEST_SYN) $(DEST_IND) |
| 1982 | -rm -rf $(DEST_FTP)/*.vim $(DEST_FTP)/README.txt |
| 1983 | -rm -f $(DEST_PLUG)/*.vim $(DEST_PLUG)/README.txt |
| 1984 | -rmdir $(DEST_FTP) $(DEST_PLUG) $(DEST_RT) |
| 1985 | # This will fail when other Vim versions are installed, no worries. |
| 1986 | -rmdir $(DEST_VIM) |
| 1987 | |
| 1988 | # Clean up all the files that have been produced, except configure's. |
| 1989 | # We support common typing mistakes for Juergen! :-) |
| 1990 | clean celan: testclean |
| 1991 | -rm -f *.o objects/* core $(VIMTARGET).core $(VIMTARGET) xxd/*.o |
| 1992 | -rm -f $(TOOLS) auto/osdef.h auto/pathdef.c auto/if_perl.c |
| 1993 | -rm -f conftest* *~ auto/link.sed |
Bram Moolenaar | ab79bcb | 2004-07-18 21:34:53 +0000 | [diff] [blame] | 1994 | -rm -rf $(GUI_BUNDLE) |
Bram Moolenaar | 5eb86f9 | 2004-07-26 12:53:41 +0000 | [diff] [blame] | 1995 | -rm -f gui_kde_wid_moc.cc kvim_iface_skel.cc *.kidl |
Bram Moolenaar | e1d1289 | 2004-06-13 13:02:36 +0000 | [diff] [blame] | 1996 | if test -d $(PODIR); then \ |
| 1997 | cd $(PODIR); $(MAKE) prefix=$(DESTDIR)$(prefix) clean; \ |
| 1998 | fi |
| 1999 | |
| 2000 | # Make a shadow directory for compilation on another system or with different |
| 2001 | # features. |
| 2002 | SHADOWDIR = shadow |
| 2003 | |
| 2004 | shadow: runtime pixmaps |
| 2005 | mkdir $(SHADOWDIR) |
| 2006 | cd $(SHADOWDIR); ln -s ../*.[ch] ../*.in ../*.sh ../*.xs ../*.xbm ../toolcheck ../proto ../vimtutor ../mkinstalldirs . |
| 2007 | mkdir $(SHADOWDIR)/auto |
| 2008 | cd $(SHADOWDIR)/auto; ln -s ../../auto/configure . |
| 2009 | cd $(SHADOWDIR); rm -f auto/link.sed |
| 2010 | cp Makefile configure $(SHADOWDIR) |
| 2011 | rm -f $(SHADOWDIR)/auto/config.mk $(SHADOWDIR)/config.mk.dist |
| 2012 | cp config.mk.dist $(SHADOWDIR)/auto/config.mk |
| 2013 | cp config.mk.dist $(SHADOWDIR) |
| 2014 | mkdir $(SHADOWDIR)/xxd |
| 2015 | cd $(SHADOWDIR)/xxd; ln -s ../../xxd/*.[ch] ../../xxd/Make* . |
| 2016 | mkdir $(SHADOWDIR)/testdir |
| 2017 | cd $(SHADOWDIR)/testdir; ln -s ../../testdir/Makefile \ |
| 2018 | ../../testdir/vimrc.unix \ |
| 2019 | ../../testdir/*.in \ |
| 2020 | ../../testdir/unix.vim \ |
| 2021 | ../../testdir/*.ok . |
| 2022 | |
| 2023 | # Link needed for doing "make install" in a shadow directory. |
| 2024 | runtime: |
| 2025 | -ln -s ../runtime . |
| 2026 | |
| 2027 | # Link needed for doing "make" using GTK in a shadow directory. |
| 2028 | pixmaps: |
| 2029 | -ln -s ../pixmaps . |
| 2030 | |
| 2031 | # Update the synmenu.vim file with the latest Syntax menu. |
| 2032 | # This is only needed when runtime/makemenu.vim was changed. |
| 2033 | menu: ./vim ../runtime/makemenu.vim |
| 2034 | ./vim -u ../runtime/makemenu.vim |
| 2035 | |
| 2036 | # Start configure from scratch |
| 2037 | scrub scratch: |
| 2038 | -rm -f auto/config.status auto/config.cache config.log auto/config.log |
| 2039 | -rm -f auto/config.h auto/link.log auto/link.sed auto/config.mk |
| 2040 | touch auto/config.h |
| 2041 | cp config.mk.dist auto/config.mk |
| 2042 | |
| 2043 | distclean: clean scratch |
| 2044 | -rm -f tags |
| 2045 | |
| 2046 | dist: distclean |
| 2047 | @echo |
| 2048 | @echo Making the distribution has to be done in the top directory |
| 2049 | |
| 2050 | mdepend: |
| 2051 | -@rm -f Makefile~ |
| 2052 | cp Makefile Makefile~ |
| 2053 | sed -e '/\#\#\# Dependencies/q' < Makefile > tmp_make |
| 2054 | @for i in $(ALL_SRC) ; do \ |
| 2055 | echo "$$i" ; \ |
| 2056 | echo `echo "$$i" | sed -e 's/[^ ]*\.c$$/objects\/\1.o/'`": $$i" `\ |
| 2057 | $(CPP) $$i |\ |
| 2058 | grep '^# .*"\./.*\.h"' |\ |
| 2059 | sort -t'"' -u +1 -2 |\ |
| 2060 | sed -e 's/.*"\.\/\(.*\)".*/\1/'\ |
| 2061 | ` >> tmp_make ; \ |
| 2062 | done |
| 2063 | mv tmp_make Makefile |
| 2064 | |
| 2065 | depend: |
| 2066 | -@rm -f Makefile~ |
| 2067 | cp Makefile Makefile~ |
| 2068 | sed -e '/\#\#\# Dependencies/q' < Makefile > tmp_make |
| 2069 | -for i in $(ALL_SRC); do echo $$i; \ |
| 2070 | $(CPP_DEPEND) $$i | \ |
| 2071 | sed -e 's+^\([^ ]*\.o\)+objects/\1+' >> tmp_make; done |
| 2072 | mv tmp_make Makefile |
| 2073 | |
Bram Moolenaar | 9d75c83 | 2005-01-25 21:57:23 +0000 | [diff] [blame^] | 2074 | # Run lint. Clean up the *.ln files that are sometimes left behind. |
Bram Moolenaar | e1d1289 | 2004-06-13 13:02:36 +0000 | [diff] [blame] | 2075 | lint: |
| 2076 | lint $(LINT_OPTIONS) $(LINT_CFLAGS) -DUSE_SNIFF -DHANGUL_INPUT $(LINT_SRC) |
Bram Moolenaar | 9d75c83 | 2005-01-25 21:57:23 +0000 | [diff] [blame^] | 2077 | -rm -f *.ln |
Bram Moolenaar | e1d1289 | 2004-06-13 13:02:36 +0000 | [diff] [blame] | 2078 | |
| 2079 | # Check dosinst.c with lint. |
| 2080 | lintinstall: |
| 2081 | lint $(LINT_OPTIONS) -DWIN32 -DUNIX_LINT dosinst.c |
Bram Moolenaar | 9d75c83 | 2005-01-25 21:57:23 +0000 | [diff] [blame^] | 2082 | -rm -f dosinst.ln |
Bram Moolenaar | e1d1289 | 2004-06-13 13:02:36 +0000 | [diff] [blame] | 2083 | |
| 2084 | ########################################################################### |
| 2085 | |
| 2086 | .c.o: |
| 2087 | $(CCC) $< |
| 2088 | |
| 2089 | .cc.o: |
| 2090 | $(CCC) $< |
| 2091 | |
| 2092 | auto/if_perl.c: if_perl.xs |
| 2093 | $(PERL) -e 'unless ( $$] >= 5.005 ) { for (qw(na defgv errgv)) { print "#define PL_$$_ $$_\n" }}' > $@ |
| 2094 | $(PERL) $(PERLLIB)/ExtUtils/xsubpp -prototypes -typemap \ |
| 2095 | $(PERLLIB)/ExtUtils/typemap if_perl.xs >> $@ |
| 2096 | |
| 2097 | auto/osdef.h: auto/config.h osdef.sh osdef1.h.in osdef2.h.in |
| 2098 | CC="$(CC) $(ALL_CFLAGS)" srcdir=$(srcdir) sh $(srcdir)/osdef.sh |
| 2099 | |
| 2100 | QUOTESED = sed -e 's/"/\\"/g' -e 's/\\"/"/' -e 's/\\";$$/";/' |
| 2101 | auto/pathdef.c: Makefile auto/config.mk |
| 2102 | -@echo creating $@ |
| 2103 | -@echo '/* pathdef.c */' > $@ |
| 2104 | -@echo '/* This file is automatically created by Makefile' >> $@ |
| 2105 | -@echo ' * DO NOT EDIT! Change Makefile only. */' >> $@ |
| 2106 | -@echo '#include "vim.h"' >> $@ |
| 2107 | -@echo 'char_u *default_vim_dir = (char_u *)"$(VIMRCLOC)";' | $(QUOTESED) >> $@ |
| 2108 | -@echo 'char_u *default_vimruntime_dir = (char_u *)"$(VIMRUNTIMEDIR)";' | $(QUOTESED) >> $@ |
| 2109 | -@echo 'char_u *all_cflags = (char_u *)"$(CC) -c -I$(srcdir) $(ALL_CFLAGS)";' | $(QUOTESED) >> $@ |
| 2110 | -@echo 'char_u *all_lflags = (char_u *)"$(CC) $(ALL_LIB_DIRS) $(LDFLAGS) -o $(VIMTARGET) $(ALL_LIBS) ";' | $(QUOTESED) >> $@ |
| 2111 | -@echo 'char_u *compiled_user = (char_u *)"' | tr -d $(NL) >> $@ |
| 2112 | -@if test -n "$(COMPILEDBY)"; then \ |
| 2113 | echo "$(COMPILEDBY)" | tr -d $(NL) >> $@; \ |
| 2114 | else ((logname) 2>/dev/null || whoami) | tr -d $(NL) >> $@; fi |
| 2115 | -@echo '";' >> $@ |
| 2116 | -@echo 'char_u *compiled_sys = (char_u *)"' | tr -d $(NL) >> $@ |
| 2117 | -@if test -z "$(COMPILEDBY)"; then hostname | tr -d $(NL) >> $@; fi |
| 2118 | -@echo '";' >> $@ |
| 2119 | -@sh $(srcdir)/pathdef.sh |
| 2120 | |
| 2121 | # All the object files are put in the "objects" directory. Since not all make |
| 2122 | # commands understand putting object files in another directory, it must be |
| 2123 | # specified for each file separately. |
| 2124 | |
| 2125 | objects: |
| 2126 | mkdir objects |
| 2127 | |
| 2128 | objects/buffer.o: buffer.c |
| 2129 | $(CCC) -o $@ buffer.c |
| 2130 | |
| 2131 | objects/charset.o: charset.c |
| 2132 | $(CCC) -o $@ charset.c |
| 2133 | |
| 2134 | objects/diff.o: diff.c |
| 2135 | $(CCC) -o $@ diff.c |
| 2136 | |
| 2137 | objects/digraph.o: digraph.c |
| 2138 | $(CCC) -o $@ digraph.c |
| 2139 | |
| 2140 | objects/edit.o: edit.c |
| 2141 | $(CCC) -o $@ edit.c |
| 2142 | |
| 2143 | objects/eval.o: eval.c |
| 2144 | $(CCC) -o $@ eval.c |
| 2145 | |
| 2146 | objects/ex_cmds.o: ex_cmds.c |
| 2147 | $(CCC) -o $@ ex_cmds.c |
| 2148 | |
| 2149 | objects/ex_cmds2.o: ex_cmds2.c |
| 2150 | $(CCC) -o $@ ex_cmds2.c |
| 2151 | |
| 2152 | objects/ex_docmd.o: ex_docmd.c |
| 2153 | $(CCC) -o $@ ex_docmd.c |
| 2154 | |
| 2155 | objects/ex_eval.o: ex_eval.c |
| 2156 | $(CCC) -o $@ ex_eval.c |
| 2157 | |
| 2158 | objects/ex_getln.o: ex_getln.c |
| 2159 | $(CCC) -o $@ ex_getln.c |
| 2160 | |
| 2161 | objects/fileio.o: fileio.c |
| 2162 | $(CCC) -o $@ fileio.c |
| 2163 | |
| 2164 | objects/fold.o: fold.c |
| 2165 | $(CCC) -o $@ fold.c |
| 2166 | |
| 2167 | objects/getchar.o: getchar.c |
| 2168 | $(CCC) -o $@ getchar.c |
| 2169 | |
Bram Moolenaar | 383f9bc | 2005-01-19 22:18:32 +0000 | [diff] [blame] | 2170 | objects/hashtable.o: hashtable.c |
| 2171 | $(CCC) -o $@ hashtable.c |
| 2172 | |
Bram Moolenaar | e1d1289 | 2004-06-13 13:02:36 +0000 | [diff] [blame] | 2173 | objects/gui.o: gui.c |
| 2174 | $(CCC) -o $@ gui.c |
| 2175 | |
| 2176 | objects/gui_at_fs.o: gui_at_fs.c |
| 2177 | $(CCC) -o $@ gui_at_fs.c |
| 2178 | |
| 2179 | objects/gui_at_sb.o: gui_at_sb.c |
| 2180 | $(CCC) -o $@ gui_at_sb.c |
| 2181 | |
| 2182 | objects/gui_athena.o: gui_athena.c |
| 2183 | $(CCC) -o $@ gui_athena.c |
| 2184 | |
Bram Moolenaar | e1d1289 | 2004-06-13 13:02:36 +0000 | [diff] [blame] | 2185 | objects/gui_beval.o: gui_beval.c |
| 2186 | $(CCC) -o $@ gui_beval.c |
| 2187 | |
| 2188 | objects/gui_gtk.o: gui_gtk.c |
| 2189 | $(CCC) -o $@ gui_gtk.c |
| 2190 | |
| 2191 | objects/gui_gtk_f.o: gui_gtk_f.c |
| 2192 | $(CCC) -o $@ gui_gtk_f.c |
| 2193 | |
| 2194 | objects/gui_gtk_x11.o: gui_gtk_x11.c |
| 2195 | $(CCC) -o $@ gui_gtk_x11.c |
| 2196 | |
| 2197 | objects/gui_motif.o: gui_motif.c |
| 2198 | $(CCC) -o $@ gui_motif.c |
| 2199 | |
Bram Moolenaar | dfccaf0 | 2004-12-31 20:56:11 +0000 | [diff] [blame] | 2200 | objects/gui_xmdlg.o: gui_xmdlg.c |
| 2201 | $(CCC) -o $@ gui_xmdlg.c |
| 2202 | |
Bram Moolenaar | b7fcef5 | 2005-01-02 11:31:05 +0000 | [diff] [blame] | 2203 | objects/gui_xmebw.o: gui_xmebw.c |
| 2204 | $(CCC) -o $@ gui_xmebw.c |
| 2205 | |
Bram Moolenaar | e1d1289 | 2004-06-13 13:02:36 +0000 | [diff] [blame] | 2206 | objects/gui_x11.o: gui_x11.c |
| 2207 | $(CCC) -o $@ gui_x11.c |
| 2208 | |
| 2209 | objects/gui_photon.o: gui_photon.c |
| 2210 | $(CCC) -o $@ gui_photon.c |
| 2211 | |
| 2212 | objects/gui_mac.o: gui_mac.c |
| 2213 | $(CCC) -o $@ gui_mac.c |
| 2214 | |
| 2215 | objects/hangulin.o: hangulin.c |
| 2216 | $(CCC) -o $@ hangulin.c |
| 2217 | |
| 2218 | objects/if_cscope.o: if_cscope.c |
| 2219 | $(CCC) -o $@ if_cscope.c |
| 2220 | |
| 2221 | objects/if_xcmdsrv.o: if_xcmdsrv.c |
| 2222 | $(CCC) -o $@ if_xcmdsrv.c |
| 2223 | |
Bram Moolenaar | 325b7a2 | 2004-07-05 15:58:32 +0000 | [diff] [blame] | 2224 | objects/if_mzsch.o: if_mzsch.c |
| 2225 | $(CCC) -o $@ if_mzsch.c |
| 2226 | |
Bram Moolenaar | e1d1289 | 2004-06-13 13:02:36 +0000 | [diff] [blame] | 2227 | objects/if_perl.o: auto/if_perl.c |
| 2228 | $(CCC) -o $@ auto/if_perl.c |
| 2229 | |
| 2230 | objects/if_perlsfio.o: if_perlsfio.c |
| 2231 | $(CCC) -o $@ if_perlsfio.c |
| 2232 | |
| 2233 | objects/if_python.o: if_python.c |
| 2234 | $(CCC) -o $@ if_python.c |
| 2235 | |
| 2236 | objects/if_ruby.o: if_ruby.c |
| 2237 | $(CCC) -o $@ if_ruby.c |
| 2238 | |
| 2239 | objects/if_sniff.o: if_sniff.c |
| 2240 | $(CCC) -o $@ if_sniff.c |
| 2241 | |
| 2242 | objects/if_tcl.o: if_tcl.c |
| 2243 | $(CCC) -o $@ if_tcl.c |
| 2244 | |
| 2245 | objects/integration.o: integration.c |
| 2246 | $(CCC) -o $@ integration.c |
| 2247 | |
| 2248 | objects/main.o: main.c |
| 2249 | $(CCC) -o $@ main.c |
| 2250 | |
| 2251 | objects/mark.o: mark.c |
| 2252 | $(CCC) -o $@ mark.c |
| 2253 | |
| 2254 | objects/memfile.o: memfile.c |
| 2255 | $(CCC) -o $@ memfile.c |
| 2256 | |
| 2257 | objects/memline.o: memline.c |
| 2258 | $(CCC) -o $@ memline.c |
| 2259 | |
| 2260 | objects/menu.o: menu.c |
| 2261 | $(CCC) -o $@ menu.c |
| 2262 | |
| 2263 | objects/message.o: message.c |
| 2264 | $(CCC) -o $@ message.c |
| 2265 | |
| 2266 | objects/misc1.o: misc1.c |
| 2267 | $(CCC) -o $@ misc1.c |
| 2268 | |
| 2269 | objects/misc2.o: misc2.c |
| 2270 | $(CCC) -o $@ misc2.c |
| 2271 | |
| 2272 | objects/move.o: move.c |
| 2273 | $(CCC) -o $@ move.c |
| 2274 | |
| 2275 | objects/mbyte.o: mbyte.c |
| 2276 | $(CCC) -o $@ mbyte.c |
| 2277 | |
| 2278 | objects/normal.o: normal.c |
| 2279 | $(CCC) -o $@ normal.c |
| 2280 | |
| 2281 | objects/ops.o: ops.c |
| 2282 | $(CCC) -o $@ ops.c |
| 2283 | |
| 2284 | objects/option.o: option.c |
| 2285 | $(CCC) -o $@ option.c |
| 2286 | |
| 2287 | objects/os_beos.o: os_beos.c |
| 2288 | $(CCC) -o $@ os_beos.c |
| 2289 | |
| 2290 | objects/os_qnx.o: os_qnx.c |
| 2291 | $(CCC) -o $@ os_qnx.c |
| 2292 | |
| 2293 | objects/os_macosx.o: os_macosx.c |
| 2294 | $(CCC) -o $@ os_macosx.c |
| 2295 | |
Bram Moolenaar | ab79bcb | 2004-07-18 21:34:53 +0000 | [diff] [blame] | 2296 | objects/os_mac_conv.o: os_mac_conv.c |
| 2297 | $(CCC) -o $@ os_mac_conv.c |
| 2298 | |
Bram Moolenaar | e1d1289 | 2004-06-13 13:02:36 +0000 | [diff] [blame] | 2299 | objects/os_unix.o: os_unix.c |
| 2300 | $(CCC) -o $@ os_unix.c |
| 2301 | |
| 2302 | objects/pathdef.o: auto/pathdef.c |
| 2303 | $(CCC) -o $@ auto/pathdef.c |
| 2304 | |
| 2305 | objects/py_config.o: $(PYTHON_CONFDIR)/config.c |
| 2306 | $(CCC) -o $@ $(PYTHON_CONFDIR)/config.c \ |
| 2307 | -I$(PYTHON_CONFDIR) -DHAVE_CONFIG_H -DNO_MAIN |
| 2308 | |
| 2309 | objects/py_getpath.o: $(PYTHON_CONFDIR)/getpath.c |
| 2310 | $(CCC) -o $@ $(PYTHON_CONFDIR)/getpath.c \ |
| 2311 | -I$(PYTHON_CONFDIR) -DHAVE_CONFIG_H -DNO_MAIN \ |
| 2312 | $(PYTHON_GETPATH_CFLAGS) |
| 2313 | |
| 2314 | objects/pty.o: pty.c |
| 2315 | $(CCC) -o $@ pty.c |
| 2316 | |
| 2317 | objects/quickfix.o: quickfix.c |
| 2318 | $(CCC) -o $@ quickfix.c |
| 2319 | |
| 2320 | objects/regexp.o: regexp.c |
| 2321 | $(CCC) -o $@ regexp.c |
| 2322 | |
| 2323 | objects/screen.o: screen.c |
| 2324 | $(CCC) -o $@ screen.c |
| 2325 | |
| 2326 | objects/search.o: search.c |
| 2327 | $(CCC) -o $@ search.c |
| 2328 | |
| 2329 | objects/syntax.o: syntax.c |
| 2330 | $(CCC) -o $@ syntax.c |
| 2331 | |
| 2332 | objects/tag.o: tag.c |
| 2333 | $(CCC) -o $@ tag.c |
| 2334 | |
| 2335 | objects/term.o: term.c |
| 2336 | $(CCC) -o $@ term.c |
| 2337 | |
| 2338 | objects/ui.o: ui.c |
| 2339 | $(CCC) -o $@ ui.c |
| 2340 | |
| 2341 | objects/undo.o: undo.c |
| 2342 | $(CCC) -o $@ undo.c |
| 2343 | |
| 2344 | objects/window.o: window.c |
| 2345 | $(CCC) -o $@ window.c |
| 2346 | |
| 2347 | objects/workshop.o: workshop.c |
| 2348 | $(CCC) -o $@ workshop.c |
| 2349 | |
| 2350 | objects/wsdebug.o: wsdebug.c |
| 2351 | $(CCC) -o $@ wsdebug.c |
| 2352 | |
Bram Moolenaar | 843ee41 | 2004-06-30 16:16:41 +0000 | [diff] [blame] | 2353 | objects/gui_kde.o: gui_kde.cc |
| 2354 | $(CCC) -o $@ gui_kde.cc |
| 2355 | |
| 2356 | objects/gui_kde_x11.o: gui_kde_x11.cc |
| 2357 | $(CCC) -o $@ gui_kde_x11.cc |
| 2358 | |
Bram Moolenaar | 5eb86f9 | 2004-07-26 12:53:41 +0000 | [diff] [blame] | 2359 | objects/gui_kde_wid.o: gui_kde_wid.cc |
| 2360 | $(MOC) -o gui_kde_wid_moc.cc gui_kde_wid.h |
Bram Moolenaar | 843ee41 | 2004-06-30 16:16:41 +0000 | [diff] [blame] | 2361 | $(KDE_DIR)/bin/dcopidl kvim_iface.h > kvim_iface.kidl || ( rm -f kvim_iface.kidl ; /bin/false ) |
| 2362 | $(KDE_DIR)/bin/dcopidl2cpp --c++-suffix cc --no-stub kvim_iface.kidl |
Bram Moolenaar | 5eb86f9 | 2004-07-26 12:53:41 +0000 | [diff] [blame] | 2363 | $(CCC) -o $@ gui_kde_wid.cc |
Bram Moolenaar | 843ee41 | 2004-06-30 16:16:41 +0000 | [diff] [blame] | 2364 | |
Bram Moolenaar | 5eb86f9 | 2004-07-26 12:53:41 +0000 | [diff] [blame] | 2365 | gui_kde_wid_moc.cc: objects/gui_kde_wid.o |
| 2366 | objects/gui_kde_wid_moc.o: gui_kde_wid_moc.cc |
| 2367 | $(CCC) -o $@ gui_kde_wid_moc.cc |
Bram Moolenaar | 843ee41 | 2004-06-30 16:16:41 +0000 | [diff] [blame] | 2368 | |
Bram Moolenaar | 5eb86f9 | 2004-07-26 12:53:41 +0000 | [diff] [blame] | 2369 | kvim_iface_skel.cc: objects/gui_kde_wid.o |
Bram Moolenaar | 843ee41 | 2004-06-30 16:16:41 +0000 | [diff] [blame] | 2370 | objects/kvim_iface_skel.o: kvim_iface_skel.cc |
| 2371 | $(CCC) -o $@ kvim_iface_skel.cc |
| 2372 | |
Bram Moolenaar | e1d1289 | 2004-06-13 13:02:36 +0000 | [diff] [blame] | 2373 | objects/netbeans.o: netbeans.c |
| 2374 | $(CCC) -o $@ netbeans.c |
| 2375 | |
| 2376 | Makefile: |
| 2377 | @echo The name of the makefile MUST be "Makefile" (with capital M)!!!! |
| 2378 | |
| 2379 | ############################################################################### |
| 2380 | ### MacOS X installation |
| 2381 | ### |
Bram Moolenaar | ab79bcb | 2004-07-18 21:34:53 +0000 | [diff] [blame] | 2382 | ### This installs a runnable Vim.app in $(prefix) |
Bram Moolenaar | e1d1289 | 2004-06-13 13:02:36 +0000 | [diff] [blame] | 2383 | |
| 2384 | REZ = /Developer/Tools/Rez |
Bram Moolenaar | ab79bcb | 2004-07-18 21:34:53 +0000 | [diff] [blame] | 2385 | APPDIR = $(GUI_BUNDLE) |
Bram Moolenaar | e1d1289 | 2004-06-13 13:02:36 +0000 | [diff] [blame] | 2386 | RESDIR = $(APPDIR)/Contents/Resources |
Bram Moolenaar | 2df6dcc | 2004-07-12 15:53:54 +0000 | [diff] [blame] | 2387 | VERSION = $(VIMMAJOR).$(VIMMINOR) |
Bram Moolenaar | e1d1289 | 2004-06-13 13:02:36 +0000 | [diff] [blame] | 2388 | |
| 2389 | ### Common flags |
| 2390 | M4FLAGSX = $(M4FLAGS) -DAPP_EXE=$(VIMNAME) -DAPP_NAME=$(VIMNAME) \ |
| 2391 | -DAPP_VER=$(VERSION) -DICON_APP=$(ICON_APP) |
| 2392 | |
| 2393 | ### Icons |
| 2394 | ICON_APP = gui_mac.icns |
| 2395 | ICONS = $(RESDIR)/$(ICON_APP) |
| 2396 | |
| 2397 | # If you uncomment the following lines the *.icns in the src directory will be |
| 2398 | # detected by this Makefile automatically, and used for Vim. |
| 2399 | #ICON_APP = $(shell if [ -e app.icns ] ; then echo app.icns ; else echo gui_mac.icns ; fi) |
| 2400 | #ICON_DOC = $(shell if [ -e doc.icns ] ; then echo doc.icns ; else echo ; fi) |
| 2401 | #ICON_DOCTXT = $(shell if [ -e doc-txt.icns ] ; then echo doc-txt.icns ; else echo ; fi) |
| 2402 | #ICONS = $(addprefix $(RESDIR)/, $(ICON_APP) $(ICON_DOC) $(ICON_DOCTXT)) |
| 2403 | |
Bram Moolenaar | ab79bcb | 2004-07-18 21:34:53 +0000 | [diff] [blame] | 2404 | install_macosx: $(APPDIR) |
| 2405 | $(INSTALL_DATA_R) $(APPDIR) $(DESTDIR)$(prefix) |
| 2406 | |
| 2407 | $(APPDIR): bundle-dir bundle-executable bundle-info bundle-resource \ |
Bram Moolenaar | e1d1289 | 2004-06-13 13:02:36 +0000 | [diff] [blame] | 2408 | bundle-language |
| 2409 | |
| 2410 | bundle-dir: $(APPDIR)/Contents $(VIMTARGET) |
| 2411 | -@srcdir=`pwd`; cd $(HELPSOURCE); $(MAKE) VIMEXE=$$srcdir/$(VIMTARGET) vimtags |
| 2412 | cp -R ../runtime $(APPDIR) |
| 2413 | |
| 2414 | bundle-executable: $(VIMTARGET) |
| 2415 | cp $(VIMTARGET) $(APPDIR)/Contents/MacOS/$(VIMTARGET) |
| 2416 | |
| 2417 | bundle-info: bundle-dir |
| 2418 | @echo "Creating PkgInfo" |
| 2419 | @echo -n "APPLVIM!" > $(APPDIR)/Contents/PkgInfo |
| 2420 | @echo "Creating Info.plist" |
| 2421 | m4 $(M4FLAGSX) infplist.xml > $(APPDIR)/Contents/Info.plist |
| 2422 | |
| 2423 | bundle-resource: bundle-dir bundle-icons bundle-rsrc |
| 2424 | |
| 2425 | bundle-icons: $(ICONS) |
| 2426 | |
| 2427 | ### Classic resources |
| 2428 | # Resource fork (in the form of a .rsrc file) for Classic Vim (Mac OS 9) |
| 2429 | # This file is also required for OS X Vim. |
| 2430 | bundle-rsrc: os_mac.rsr.hqx |
| 2431 | @echo "Creating resource fork" |
| 2432 | python dehqx.py $< |
| 2433 | rm -f gui_mac.rsrc |
| 2434 | mv gui_mac.rsrc.rsrcfork $(RESDIR)/$(VIMNAME).rsrc |
| 2435 | |
| 2436 | # po/Make_osx.pl says something about generating a Mac message file |
| 2437 | # for Ukrananian. Would somebody using Mac OS X in Ukranian |
| 2438 | # *really* be upset that Carbon Vim was not localised in |
| 2439 | # Ukranian? |
| 2440 | # |
| 2441 | #bundle-language: bundle-dir po/Make_osx.pl |
| 2442 | # cd po && perl Make_osx.pl --outdir ../$(RESDIR) $(MULTILANG) |
| 2443 | bundle-language: bundle-dir |
| 2444 | |
| 2445 | $(APPDIR)/Contents: |
Bram Moolenaar | ab79bcb | 2004-07-18 21:34:53 +0000 | [diff] [blame] | 2446 | -$(SHELL) ./mkinstalldirs $(APPDIR)/Contents/MacOS |
| 2447 | -$(SHELL) ./mkinstalldirs $(RESDIR)/English.lproj |
Bram Moolenaar | e1d1289 | 2004-06-13 13:02:36 +0000 | [diff] [blame] | 2448 | |
| 2449 | $(RESDIR)/%.icns: %.icns |
| 2450 | cp $< $@ |
| 2451 | |
| 2452 | |
| 2453 | ############################################################################### |
| 2454 | ### (automatically generated by 'make depend') |
| 2455 | ### Dependencies: |
| 2456 | objects/buffer.o: buffer.c vim.h auto/config.h feature.h os_unix.h \ |
| 2457 | auto/osdef.h ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 2458 | gui.h gui_beval.h proto/gui_beval.pro option.h ex_cmds.h proto.h \ |
| 2459 | globals.h farsi.h arabic.h version.h |
| 2460 | objects/charset.o: charset.c vim.h auto/config.h feature.h os_unix.h \ |
| 2461 | auto/osdef.h ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 2462 | gui.h gui_beval.h proto/gui_beval.pro option.h ex_cmds.h proto.h \ |
| 2463 | globals.h farsi.h arabic.h |
| 2464 | objects/diff.o: diff.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \ |
| 2465 | ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \ |
| 2466 | proto/gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \ |
| 2467 | arabic.h |
| 2468 | objects/digraph.o: digraph.c vim.h auto/config.h feature.h os_unix.h \ |
| 2469 | auto/osdef.h ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 2470 | gui.h gui_beval.h proto/gui_beval.pro option.h ex_cmds.h proto.h \ |
| 2471 | globals.h farsi.h arabic.h |
| 2472 | objects/edit.o: edit.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \ |
| 2473 | ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \ |
| 2474 | proto/gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \ |
| 2475 | arabic.h |
| 2476 | objects/eval.o: eval.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \ |
| 2477 | ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \ |
| 2478 | proto/gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \ |
| 2479 | arabic.h version.h |
| 2480 | objects/ex_cmds.o: ex_cmds.c vim.h auto/config.h feature.h os_unix.h \ |
| 2481 | auto/osdef.h ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 2482 | gui.h gui_beval.h proto/gui_beval.pro option.h ex_cmds.h proto.h \ |
| 2483 | globals.h farsi.h arabic.h version.h |
| 2484 | objects/ex_cmds2.o: ex_cmds2.c vim.h auto/config.h feature.h os_unix.h \ |
| 2485 | auto/osdef.h ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 2486 | gui.h gui_beval.h proto/gui_beval.pro option.h ex_cmds.h proto.h \ |
| 2487 | globals.h farsi.h arabic.h version.h |
| 2488 | objects/ex_docmd.o: ex_docmd.c vim.h auto/config.h feature.h os_unix.h \ |
| 2489 | auto/osdef.h ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 2490 | gui.h gui_beval.h proto/gui_beval.pro option.h ex_cmds.h proto.h \ |
| 2491 | globals.h farsi.h arabic.h |
| 2492 | objects/ex_eval.o: ex_eval.c vim.h auto/config.h feature.h os_unix.h \ |
| 2493 | auto/osdef.h ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 2494 | gui.h gui_beval.h proto/gui_beval.pro option.h ex_cmds.h proto.h \ |
| 2495 | globals.h farsi.h arabic.h |
| 2496 | objects/ex_getln.o: ex_getln.c vim.h auto/config.h feature.h os_unix.h \ |
| 2497 | auto/osdef.h ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 2498 | gui.h gui_beval.h proto/gui_beval.pro option.h ex_cmds.h proto.h \ |
| 2499 | globals.h farsi.h arabic.h |
| 2500 | objects/fileio.o: fileio.c vim.h auto/config.h feature.h os_unix.h \ |
| 2501 | auto/osdef.h ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 2502 | gui.h gui_beval.h proto/gui_beval.pro option.h ex_cmds.h proto.h \ |
| 2503 | globals.h farsi.h arabic.h |
| 2504 | objects/fold.o: fold.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \ |
| 2505 | ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \ |
| 2506 | proto/gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \ |
| 2507 | arabic.h |
| 2508 | objects/getchar.o: getchar.c vim.h auto/config.h feature.h os_unix.h \ |
| 2509 | auto/osdef.h ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 2510 | gui.h gui_beval.h proto/gui_beval.pro option.h ex_cmds.h proto.h \ |
| 2511 | globals.h farsi.h arabic.h |
Bram Moolenaar | 383f9bc | 2005-01-19 22:18:32 +0000 | [diff] [blame] | 2512 | objects/hashtable.o: hashtable.c vim.h auto/config.h feature.h os_unix.h \ |
| 2513 | auto/osdef.h ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 2514 | gui.h gui_beval.h proto/gui_beval.pro option.h ex_cmds.h proto.h \ |
| 2515 | globals.h farsi.h arabic.h |
Bram Moolenaar | e1d1289 | 2004-06-13 13:02:36 +0000 | [diff] [blame] | 2516 | objects/if_cscope.o: if_cscope.c vim.h auto/config.h feature.h os_unix.h \ |
| 2517 | auto/osdef.h ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 2518 | gui.h gui_beval.h proto/gui_beval.pro option.h ex_cmds.h proto.h \ |
| 2519 | globals.h farsi.h arabic.h if_cscope.h |
| 2520 | objects/if_xcmdsrv.o: if_xcmdsrv.c vim.h auto/config.h feature.h os_unix.h \ |
| 2521 | auto/osdef.h ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 2522 | gui.h gui_beval.h proto/gui_beval.pro option.h ex_cmds.h proto.h \ |
| 2523 | globals.h farsi.h arabic.h version.h |
| 2524 | objects/main.o: main.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \ |
| 2525 | ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \ |
| 2526 | proto/gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \ |
| 2527 | arabic.h farsi.c arabic.c |
| 2528 | objects/mark.o: mark.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \ |
| 2529 | ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \ |
| 2530 | proto/gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \ |
| 2531 | arabic.h |
| 2532 | objects/memfile.o: memfile.c vim.h auto/config.h feature.h os_unix.h \ |
| 2533 | auto/osdef.h ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 2534 | gui.h gui_beval.h proto/gui_beval.pro option.h ex_cmds.h proto.h \ |
| 2535 | globals.h farsi.h arabic.h |
| 2536 | objects/memline.o: memline.c vim.h auto/config.h feature.h os_unix.h \ |
| 2537 | auto/osdef.h ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 2538 | gui.h gui_beval.h proto/gui_beval.pro option.h ex_cmds.h proto.h \ |
| 2539 | globals.h farsi.h arabic.h |
| 2540 | objects/menu.o: menu.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \ |
| 2541 | ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \ |
| 2542 | proto/gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \ |
| 2543 | arabic.h |
| 2544 | objects/message.o: message.c vim.h auto/config.h feature.h os_unix.h \ |
| 2545 | auto/osdef.h ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 2546 | gui.h gui_beval.h proto/gui_beval.pro option.h ex_cmds.h proto.h \ |
| 2547 | globals.h farsi.h arabic.h |
| 2548 | objects/misc1.o: misc1.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \ |
| 2549 | ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \ |
| 2550 | proto/gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \ |
| 2551 | arabic.h version.h |
| 2552 | objects/misc2.o: misc2.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \ |
| 2553 | ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \ |
| 2554 | proto/gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \ |
| 2555 | arabic.h |
| 2556 | objects/move.o: move.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \ |
| 2557 | ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \ |
| 2558 | proto/gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \ |
| 2559 | arabic.h |
| 2560 | objects/mbyte.o: mbyte.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \ |
| 2561 | ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \ |
| 2562 | proto/gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \ |
| 2563 | arabic.h |
| 2564 | objects/normal.o: normal.c vim.h auto/config.h feature.h os_unix.h \ |
| 2565 | auto/osdef.h ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 2566 | gui.h gui_beval.h proto/gui_beval.pro option.h ex_cmds.h proto.h \ |
| 2567 | globals.h farsi.h arabic.h |
| 2568 | objects/ops.o: ops.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \ |
| 2569 | ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \ |
| 2570 | proto/gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \ |
| 2571 | arabic.h |
| 2572 | objects/option.o: option.c vim.h auto/config.h feature.h os_unix.h \ |
| 2573 | auto/osdef.h ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 2574 | gui.h gui_beval.h proto/gui_beval.pro option.h ex_cmds.h proto.h \ |
| 2575 | globals.h farsi.h arabic.h |
| 2576 | objects/os_unix.o: os_unix.c vim.h auto/config.h feature.h os_unix.h \ |
| 2577 | auto/osdef.h ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 2578 | gui.h gui_beval.h proto/gui_beval.pro option.h ex_cmds.h proto.h \ |
| 2579 | globals.h farsi.h arabic.h os_unixx.h |
| 2580 | objects/pathdef.o: auto/pathdef.c vim.h auto/config.h feature.h os_unix.h \ |
| 2581 | auto/osdef.h ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 2582 | gui.h gui_beval.h proto/gui_beval.pro option.h ex_cmds.h proto.h \ |
| 2583 | globals.h farsi.h arabic.h |
| 2584 | objects/quickfix.o: quickfix.c vim.h auto/config.h feature.h os_unix.h \ |
| 2585 | auto/osdef.h ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 2586 | gui.h gui_beval.h proto/gui_beval.pro option.h ex_cmds.h proto.h \ |
| 2587 | globals.h farsi.h arabic.h |
| 2588 | objects/regexp.o: regexp.c vim.h auto/config.h feature.h os_unix.h \ |
| 2589 | auto/osdef.h ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 2590 | gui.h gui_beval.h proto/gui_beval.pro option.h ex_cmds.h proto.h \ |
| 2591 | globals.h farsi.h arabic.h |
| 2592 | objects/screen.o: screen.c vim.h auto/config.h feature.h os_unix.h \ |
| 2593 | auto/osdef.h ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 2594 | gui.h gui_beval.h proto/gui_beval.pro option.h ex_cmds.h proto.h \ |
| 2595 | globals.h farsi.h arabic.h |
| 2596 | objects/search.o: search.c vim.h auto/config.h feature.h os_unix.h \ |
| 2597 | auto/osdef.h ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 2598 | gui.h gui_beval.h proto/gui_beval.pro option.h ex_cmds.h proto.h \ |
| 2599 | globals.h farsi.h arabic.h |
| 2600 | objects/syntax.o: syntax.c vim.h auto/config.h feature.h os_unix.h \ |
| 2601 | auto/osdef.h ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 2602 | gui.h gui_beval.h proto/gui_beval.pro option.h ex_cmds.h proto.h \ |
| 2603 | globals.h farsi.h arabic.h |
| 2604 | objects/tag.o: tag.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \ |
| 2605 | ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \ |
| 2606 | proto/gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \ |
| 2607 | arabic.h |
| 2608 | objects/term.o: term.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \ |
| 2609 | ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \ |
| 2610 | proto/gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \ |
| 2611 | arabic.h |
| 2612 | objects/ui.o: ui.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \ |
| 2613 | ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \ |
| 2614 | proto/gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \ |
| 2615 | arabic.h |
| 2616 | objects/undo.o: undo.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \ |
| 2617 | ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \ |
| 2618 | proto/gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \ |
| 2619 | arabic.h |
| 2620 | objects/version.o: version.c vim.h auto/config.h feature.h os_unix.h \ |
| 2621 | auto/osdef.h ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 2622 | gui.h gui_beval.h proto/gui_beval.pro option.h ex_cmds.h proto.h \ |
| 2623 | globals.h farsi.h arabic.h version.h |
| 2624 | objects/window.o: window.c vim.h auto/config.h feature.h os_unix.h \ |
| 2625 | auto/osdef.h ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 2626 | gui.h gui_beval.h proto/gui_beval.pro option.h ex_cmds.h proto.h \ |
| 2627 | globals.h farsi.h arabic.h |
| 2628 | objects/gui.o: gui.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \ |
| 2629 | ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \ |
| 2630 | proto/gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \ |
| 2631 | arabic.h |
| 2632 | objects/gui_gtk.o: gui_gtk.c gui_gtk_f.h vim.h auto/config.h feature.h \ |
| 2633 | os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h structs.h \ |
| 2634 | regexp.h gui.h gui_beval.h proto/gui_beval.pro option.h ex_cmds.h \ |
| 2635 | proto.h globals.h farsi.h arabic.h ../pixmaps/stock_icons.h |
| 2636 | objects/gui_gtk_f.o: gui_gtk_f.c vim.h auto/config.h feature.h os_unix.h \ |
| 2637 | auto/osdef.h ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 2638 | gui.h gui_beval.h proto/gui_beval.pro option.h ex_cmds.h proto.h \ |
| 2639 | globals.h farsi.h arabic.h gui_gtk_f.h |
| 2640 | objects/gui_motif.o: gui_motif.c vim.h auto/config.h feature.h os_unix.h \ |
| 2641 | auto/osdef.h ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 2642 | gui.h gui_beval.h proto/gui_beval.pro option.h ex_cmds.h proto.h \ |
| 2643 | globals.h farsi.h arabic.h ../pixmaps/alert.xpm ../pixmaps/error.xpm \ |
| 2644 | ../pixmaps/generic.xpm ../pixmaps/info.xpm ../pixmaps/quest.xpm |
| 2645 | objects/gui_athena.o: gui_athena.c vim.h auto/config.h feature.h os_unix.h \ |
| 2646 | auto/osdef.h ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 2647 | gui.h gui_beval.h proto/gui_beval.pro option.h ex_cmds.h proto.h \ |
| 2648 | globals.h farsi.h arabic.h gui_at_sb.h |
| 2649 | objects/gui_gtk_x11.o: gui_gtk_x11.c vim.h auto/config.h feature.h os_unix.h \ |
| 2650 | auto/osdef.h ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 2651 | gui.h gui_beval.h proto/gui_beval.pro option.h ex_cmds.h proto.h \ |
| 2652 | globals.h farsi.h arabic.h gui_gtk_f.h ../runtime/vim32x32.xpm \ |
| 2653 | ../runtime/vim16x16.xpm ../runtime/vim48x48.xpm |
| 2654 | objects/gui_x11.o: gui_x11.c vim.h auto/config.h feature.h os_unix.h \ |
| 2655 | auto/osdef.h ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 2656 | gui.h gui_beval.h proto/gui_beval.pro option.h ex_cmds.h proto.h \ |
| 2657 | globals.h farsi.h arabic.h ../runtime/vim32x32.xpm \ |
| 2658 | ../runtime/vim16x16.xpm ../runtime/vim48x48.xpm ../pixmaps/tb_new.xpm \ |
| 2659 | ../pixmaps/tb_open.xpm ../pixmaps/tb_close.xpm ../pixmaps/tb_save.xpm \ |
| 2660 | ../pixmaps/tb_print.xpm ../pixmaps/tb_cut.xpm ../pixmaps/tb_copy.xpm \ |
| 2661 | ../pixmaps/tb_paste.xpm ../pixmaps/tb_find.xpm \ |
| 2662 | ../pixmaps/tb_find_next.xpm ../pixmaps/tb_find_prev.xpm \ |
| 2663 | ../pixmaps/tb_find_help.xpm ../pixmaps/tb_exit.xpm \ |
| 2664 | ../pixmaps/tb_undo.xpm ../pixmaps/tb_redo.xpm ../pixmaps/tb_help.xpm \ |
| 2665 | ../pixmaps/tb_macro.xpm ../pixmaps/tb_make.xpm \ |
| 2666 | ../pixmaps/tb_save_all.xpm ../pixmaps/tb_jump.xpm \ |
| 2667 | ../pixmaps/tb_ctags.xpm ../pixmaps/tb_load_session.xpm \ |
| 2668 | ../pixmaps/tb_save_session.xpm ../pixmaps/tb_new_session.xpm \ |
| 2669 | ../pixmaps/tb_blank.xpm ../pixmaps/tb_maximize.xpm \ |
| 2670 | ../pixmaps/tb_split.xpm ../pixmaps/tb_minimize.xpm \ |
| 2671 | ../pixmaps/tb_shell.xpm ../pixmaps/tb_replace.xpm \ |
| 2672 | ../pixmaps/tb_vsplit.xpm ../pixmaps/tb_maxwidth.xpm \ |
| 2673 | ../pixmaps/tb_minwidth.xpm |
| 2674 | objects/gui_at_sb.o: gui_at_sb.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 gui_at_sb.h |
| 2678 | objects/gui_at_fs.o: gui_at_fs.c vim.h auto/config.h feature.h os_unix.h \ |
| 2679 | auto/osdef.h ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 2680 | gui.h gui_beval.h proto/gui_beval.pro option.h ex_cmds.h proto.h \ |
| 2681 | globals.h farsi.h arabic.h gui_at_sb.h |
| 2682 | objects/pty.o: pty.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \ |
| 2683 | ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \ |
| 2684 | proto/gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \ |
| 2685 | arabic.h |
Bram Moolenaar | 5eb86f9 | 2004-07-26 12:53:41 +0000 | [diff] [blame] | 2686 | objects/gui_kde.o: gui_kde.cc gui_kde_wid.h kvim_iface.h vim.h \ |
Bram Moolenaar | 843ee41 | 2004-06-30 16:16:41 +0000 | [diff] [blame] | 2687 | auto/config.h feature.h os_unix.h auto/osdef.h ascii.h keymap.h \ |
| 2688 | term.h macros.h structs.h regexp.h gui.h option.h ex_cmds.h proto.h \ |
| 2689 | globals.h farsi.h |
Bram Moolenaar | 5eb86f9 | 2004-07-26 12:53:41 +0000 | [diff] [blame] | 2690 | objects/gui_kde_wid.o: gui_kde_wid.cc gui_kde_wid.h kvim_iface.h \ |
Bram Moolenaar | 843ee41 | 2004-06-30 16:16:41 +0000 | [diff] [blame] | 2691 | vim.h auto/config.h feature.h os_unix.h auto/osdef.h ascii.h keymap.h \ |
| 2692 | term.h macros.h structs.h regexp.h gui.h option.h ex_cmds.h proto.h \ |
| 2693 | globals.h farsi.h proto/../../pixmaps/alert.xpm proto/../../pixmaps/error.xpm \ |
| 2694 | proto/../../pixmaps/generic.xpm proto/../../pixmaps/info.xpm \ |
| 2695 | proto/../../pixmaps/quest.xpm |
Bram Moolenaar | 5eb86f9 | 2004-07-26 12:53:41 +0000 | [diff] [blame] | 2696 | objects/gui_kde_x11.o: gui_kde_x11.cc gui_kde_wid.h kvim_iface.h vim.h \ |
Bram Moolenaar | 843ee41 | 2004-06-30 16:16:41 +0000 | [diff] [blame] | 2697 | auto/config.h feature.h os_unix.h auto/osdef.h ascii.h keymap.h \ |
| 2698 | term.h macros.h structs.h regexp.h gui.h option.h ex_cmds.h proto.h \ |
| 2699 | globals.h farsi.h version.h ../runtime/vim32x32.xpm |
Bram Moolenaar | 5eb86f9 | 2004-07-26 12:53:41 +0000 | [diff] [blame] | 2700 | objects/gui_kde_wid_moc.o: gui_kde_wid_moc.cc gui_kde_wid.h \ |
Bram Moolenaar | 843ee41 | 2004-06-30 16:16:41 +0000 | [diff] [blame] | 2701 | kvim_iface.h vim.h auto/config.h feature.h os_unix.h auto/osdef.h \ |
| 2702 | ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h option.h \ |
| 2703 | ex_cmds.h proto.h globals.h |
Bram Moolenaar | e1d1289 | 2004-06-13 13:02:36 +0000 | [diff] [blame] | 2704 | objects/hangulin.o: hangulin.c vim.h auto/config.h feature.h os_unix.h \ |
| 2705 | auto/osdef.h ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 2706 | gui.h gui_beval.h proto/gui_beval.pro option.h ex_cmds.h proto.h \ |
| 2707 | globals.h farsi.h arabic.h |
Bram Moolenaar | 325b7a2 | 2004-07-05 15:58:32 +0000 | [diff] [blame] | 2708 | objects/if_mzsch.o: if_mzsch.c vim.h auto/config.h feature.h os_unix.h \ |
| 2709 | auto/osdef.h ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 2710 | gui.h gui_beval.h proto/gui_beval.pro option.h ex_cmds.h proto.h \ |
| 2711 | globals.h farsi.h arabic.h |
Bram Moolenaar | e1d1289 | 2004-06-13 13:02:36 +0000 | [diff] [blame] | 2712 | objects/if_perl.o: auto/if_perl.c vim.h auto/config.h feature.h os_unix.h \ |
| 2713 | auto/osdef.h ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 2714 | gui.h gui_beval.h proto/gui_beval.pro option.h ex_cmds.h proto.h \ |
| 2715 | globals.h farsi.h arabic.h |
| 2716 | objects/if_perlsfio.o: if_perlsfio.c vim.h auto/config.h feature.h os_unix.h \ |
| 2717 | auto/osdef.h ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 2718 | gui.h gui_beval.h proto/gui_beval.pro option.h ex_cmds.h proto.h \ |
| 2719 | globals.h farsi.h arabic.h |
| 2720 | objects/if_python.o: if_python.c vim.h auto/config.h feature.h os_unix.h \ |
| 2721 | auto/osdef.h ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 2722 | gui.h gui_beval.h proto/gui_beval.pro option.h ex_cmds.h proto.h \ |
| 2723 | globals.h farsi.h arabic.h |
| 2724 | objects/if_tcl.o: if_tcl.c vim.h auto/config.h feature.h os_unix.h \ |
| 2725 | auto/osdef.h ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 2726 | gui.h gui_beval.h proto/gui_beval.pro option.h ex_cmds.h proto.h \ |
| 2727 | globals.h farsi.h arabic.h |
| 2728 | objects/if_ruby.o: if_ruby.c vim.h auto/config.h feature.h os_unix.h \ |
| 2729 | auto/osdef.h ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 2730 | gui.h gui_beval.h proto/gui_beval.pro option.h ex_cmds.h proto.h \ |
| 2731 | globals.h farsi.h arabic.h version.h |
| 2732 | objects/if_sniff.o: if_sniff.c vim.h auto/config.h feature.h os_unix.h \ |
| 2733 | auto/osdef.h ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 2734 | gui.h gui_beval.h proto/gui_beval.pro option.h ex_cmds.h proto.h \ |
| 2735 | globals.h farsi.h arabic.h os_unixx.h |
| 2736 | objects/gui_beval.o: gui_beval.c vim.h auto/config.h feature.h os_unix.h \ |
| 2737 | auto/osdef.h ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 2738 | gui.h gui_beval.h proto/gui_beval.pro option.h ex_cmds.h proto.h \ |
| 2739 | globals.h farsi.h arabic.h |
| 2740 | objects/workshop.o: workshop.c auto/config.h integration.h vim.h feature.h \ |
| 2741 | os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h structs.h \ |
| 2742 | regexp.h gui.h gui_beval.h proto/gui_beval.pro option.h ex_cmds.h \ |
| 2743 | proto.h globals.h farsi.h arabic.h version.h workshop.h |
| 2744 | objects/wsdebug.o: wsdebug.c |
| 2745 | objects/integration.o: integration.c vim.h auto/config.h feature.h os_unix.h \ |
| 2746 | auto/osdef.h ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 2747 | gui.h gui_beval.h proto/gui_beval.pro option.h ex_cmds.h proto.h \ |
| 2748 | globals.h farsi.h arabic.h integration.h |
| 2749 | objects/netbeans.o: netbeans.c vim.h auto/config.h feature.h os_unix.h \ |
| 2750 | auto/osdef.h ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 2751 | gui.h gui_beval.h proto/gui_beval.pro option.h ex_cmds.h proto.h \ |
| 2752 | globals.h farsi.h arabic.h version.h |