blob: e0717b62aeb725a0351ebc19efc4963b867d98a2 [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001# Makefile for VIM on Win32, using 'EGCS/mingw32 1.1.2'.
2# Info at http://www.mingw.org
3# Also requires 'GNU make 3.77', which you can get through a link
4# to 'JanJaap's page from the above page.
5# Get missing libraries from http://gnuwin32.sf.net.
6#
7# Tested on Win32 NT 4 and Win95.
8#
9# To make everything, just 'make -f Make_ming.mak'
10# To make just e.g. gvim.exe, 'make -f Make_ming.mak gvim.exe'
11# After a run, you can 'make -f Make_ming.mak clean' to clean up
12#
13# NOTE: Sometimes 'GNU Make' will stop after building vimrun.exe -- I think
14# it's just run out of memory or something. Run again, and it will continue
15# with 'xxd'.
16#
17# "make upx" makes *compressed* versions of the GUI and console EXEs, using the
18# excellent UPX compressor:
19# http://upx.sourceforge.net/
20#
21# Maintained by Ron Aaron <ronaharon@yahoo.com>
22# updated 2003 Jan 20
23
24#>>>>> choose options:
25# set to yes for a debug build
26DEBUG=no
Bram Moolenaar7263a772007-05-10 17:35:54 +000027# set to SIZE for size, SPEED for speed, MAXSPEED for maximum optimization
Bram Moolenaar071d4272004-06-13 20:20:40 +000028OPTIMIZE=MAXSPEED
29# set to yes to make gvim, no for vim
30GUI=yes
31# FEATURES=[TINY | SMALL | NORMAL | BIG | HUGE]
32# set to TINY to make minimal version (few features)
33FEATURES=BIG
Bram Moolenaar1cd871b2004-12-19 22:46:22 +000034# set to one of i386, i486, i586, i686 as the minimum target processor
Bram Moolenaar071d4272004-06-13 20:20:40 +000035ARCH=i386
36# set to yes to cross-compile from unix; no=native Windows
37CROSS=no
38# set to path to iconv.h and libiconv.a to enable using 'iconv.dll'
39#ICONV="."
40ICONV=yes
41GETTEXT=yes
42# set to yes to include multibyte support
43MBYTE=yes
44# set to yes to include IME support
45IME=yes
46DYNAMIC_IME=yes
47# set to yes to enable writing a postscript file with :hardcopy
48POSTSCRIPT=no
49# set to yes to enable OLE support
50OLE=no
51# Set the default $(WINVER) to make it work with pre-Win2k
52WINVER = 0x0400
53# Set to yes to enable Cscope support
54CSCOPE=yes
55# Set to yes to enable Netbeans support
56NETBEANS=$(GUI)
57
58
59# If the user doesn't want gettext, undefine it.
60ifeq (no, $(GETTEXT))
61GETTEXT=
62endif
63# Added by E.F. Amatria <eferna1@platea.ptic.mec.es> 2001 Feb 23
64# Uncomment the first line and one of the following three if you want Native Language
65# Support. You'll need gnu_gettext.win32, a MINGW32 Windows PORT of gettext by
66# Franco Bez <franco.bez@gmx.de>. It may be found at
67# http://home.a-city.de/franco.bez/gettext/gettext_win32_en.html
68# Tested with mingw32 with GCC-2.95.2 on Win98
69# Updated 2001 Jun 9
70#GETTEXT=c:/gettext.win32.msvcrt
71#STATIC_GETTEXT=USE_STATIC_GETTEXT
72#DYNAMIC_GETTEXT=USE_GETTEXT_DLL
73#DYNAMIC_GETTEXT=USE_SAFE_GETTEXT_DLL
74SAFE_GETTEXT_DLL_OBJ = $(GETTEXT)/src/safe_gettext_dll/safe_gettext_dll.o
75# Alternatively, if you uncomment the two following lines, you get a "safe" version
76# without linking the safe_gettext_dll.o object file.
77#DYNAMIC_GETTEXT=DYNAMIC_GETTEXT
78#GETTEXT_DYNAMIC=gnu_gettext.dll
79INTLPATH=$(GETTEXT)/lib/mingw32
80INTLLIB=gnu_gettext
81
82# If you are using gettext-0.10.35 from http://sourceforge.net/projects/gettext
83# or gettext-0.10.37 from http://sourceforge.net/projects/mingwrep/
84# uncomment the following, but I can't build a static versión with them, ?-(|
85#GETTEXT=c:/gettext-0.10.37-20010430
86#STATIC_GETTEXT=USE_STATIC_GETTEXT
87#DYNAMIC_GETTEXT=DYNAMIC_GETTEXT
88#INTLPATH=$(GETTEXT)/lib
89#INTLLIB=intl
90
91# uncomment 'PERL' if you want a perl-enabled version
92#PERL=C:/perl
93ifdef PERL
94ifndef PERL_VER
95PERL_VER=56
96endif
97ifndef DYNAMIC_PERL
98DYNAMIC_PERL=yes
99endif
100# on Linux, for cross-compile, it's here:
101#PERLLIB=/home/ron/ActivePerl/lib
102# on NT, it's here:
103PERLLIB=$(PERL)/lib
104PERLLIBS=$(PERLLIB)/Core
105endif
106
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000107# uncomment 'MZSCHEME' if you want a MzScheme-enabled version
108#MZSCHEME=d:/plt
109ifdef MZSCHEME
Bram Moolenaar281bdce2005-01-25 21:53:18 +0000110ifndef DYNAMIC_MZSCHEME
111DYNAMIC_MZSCHEME=yes
112endif
113
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000114ifndef MZSCHEME_VER
115MZSCHEME_VER=205_000
116endif
Bram Moolenaar281bdce2005-01-25 21:53:18 +0000117
Bram Moolenaar9e70cf12009-05-26 20:59:55 +0000118ifndef MZSCHEME_PRECISE_GC
119MZSCHEME_PRECISE_GC=no
120endif
121
122# for version 4.x we need to generate byte-code for Scheme base
123ifndef MZSCHEME_GENERATE_BASE
124MZSCHEME_GENERATE_BASE=no
125endif
126
Bram Moolenaar281bdce2005-01-25 21:53:18 +0000127ifeq (no,$(DYNAMIC_MZSCHEME))
Bram Moolenaar9e70cf12009-05-26 20:59:55 +0000128ifeq (yes,$(MZSCHEME_PRECISE_GC))
129MZSCHEME_LIB=-lmzsch$(MZSCHEME_VER)
130else
Bram Moolenaar281bdce2005-01-25 21:53:18 +0000131MZSCHEME_LIB = -lmzsch$(MZSCHEME_VER) -lmzgc$(MZSCHEME_VER)
Bram Moolenaar9e70cf12009-05-26 20:59:55 +0000132endif
Bram Moolenaar281bdce2005-01-25 21:53:18 +0000133# the modern MinGW can dynamically link to dlls directly.
134# point MZSCHEME_DLLS to where you put libmzschXXXXXXX.dll and libgcXXXXXXX.dll
Bram Moolenaar281bdce2005-01-25 21:53:18 +0000135ifndef MZSCHEME_DLLS
136MZSCHEME_DLLS=$(MZSCHEME)
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000137endif
Bram Moolenaar281bdce2005-01-25 21:53:18 +0000138MZSCHEME_LIBDIR=-L$(MZSCHEME_DLLS)
139endif
140
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000141endif
142
Bram Moolenaar071d4272004-06-13 20:20:40 +0000143# Python support -- works with the ActiveState python 2.0 release (and others
144# too, probably)
145#
146# uncomment 'PYTHON' to make python-enabled version
147# Put the path to the python distro here. If cross compiling from Linux, you
148# will also need to convert the header files to unix instead of dos format:
149# for fil in *.h ; do vim -e -c 'set ff=unix|w|q' $fil
150# and also, you will need to make a mingw32 'libpython20.a' to link with:
151# cd $PYTHON/libs
152# pexports python20.dll > python20.def
153# dlltool -d python20.def -l libpython20.a
154# on my Linux box, I put the Python stuff here:
155#PYTHON=/home/ron/ActivePython-2.0.0-202/src/Core
156# on my NT box, it's here:
157#PYTHON=c:/python20
158
159ifdef PYTHON
160ifndef DYNAMIC_PYTHON
161DYNAMIC_PYTHON=yes
162endif
163
164ifndef PYTHON_VER
165PYTHON_VER=22
166endif
167
168ifeq (no,$(DYNAMIC_PYTHON))
169PYTHONLIB=-L$(PYTHON)/libs -lpython$(PYTHON_VER)
170endif
171# my include files are in 'win32inc' on Linux, and 'include' in the standard
172# NT distro (ActiveState)
173ifeq ($(CROSS),no)
174PYTHONINC=-I $(PYTHON)/include
175else
176PYTHONINC=-I $(PYTHON)/win32inc
177endif
178endif
179
180# TCL interface:
181# TCL=[Path to TCL directory]
182# DYNAMIC_TCL=yes (to load the TCL DLL dynamically)
183# TCL_VER=[TCL version, eg 83, 84] (default is 83)
184#TCL=c:/tcl
185ifdef TCL
186ifndef DYNAMIC_TCL
187DYNAMIC_TCL=yes
188endif
189ifndef TCL_VER
190TCL_VER = 83
191endif
192TCLINC += -I$(TCL)/include
193endif
194
195
196# Ruby interface:
197# RUBY=[Path to Ruby directory]
198# DYNAMIC_RUBY=yes (to load the Ruby DLL dynamically)
199# RUBY_VER=[Ruby version, eg 16, 17] (default is 16)
200# RUBY_VER_LONG=[Ruby version, eg 1.6, 1.7] (default is 1.6)
201# You must set RUBY_VER_LONG when change RUBY_VER.
202#RUBY=c:/ruby
203ifdef RUBY
204ifndef DYNAMIC_RUBY
205DYNAMIC_RUBY=yes
206endif
207# Set default value
208ifndef RUBY_VER
209RUBY_VER = 16
210endif
211ifndef RUBY_VER_LONG
212RUBY_VER_LONG = 1.6
213endif
214
215ifeq ($(RUBY_VER), 16)
216ifndef RUBY_PLATFORM
217RUBY_PLATFORM = i586-mswin32
218endif
219ifndef RUBY_INSTALL_NAME
220RUBY_INSTALL_NAME = mswin32-ruby$(RUBY_VER)
221endif
222else
223ifndef RUBY_PLATFORM
224RUBY_PLATFORM = i386-mswin32
225endif
226ifndef RUBY_INSTALL_NAME
227RUBY_INSTALL_NAME = msvcrt-ruby$(RUBY_VER)
228endif
229endif
230
231RUBYINC =-I $(RUBY)/lib/ruby/$(RUBY_VER_LONG)/$(RUBY_PLATFORM)
232ifeq (no, $(DYNAMIC_RUBY))
233RUBYLIB = -L$(RUBY)/lib -l$(RUBY_INSTALL_NAME)
234endif
235
236endif # RUBY
237
238# See feature.h for a list of options.
239# Any other defines can be included here.
240DEF_GUI=-DFEAT_GUI_W32 -DFEAT_CLIPBOARD
241DEFINES=-DWIN32 -DWINVER=$(WINVER) -D_WIN32_WINNT=$(WINVER) \
242 -DHAVE_PATHDEF -DFEAT_$(FEATURES)
243ifeq ($(CROSS),yes)
244# cross-compiler:
245CC = i586-pc-mingw32msvc-gcc
246DEL = rm
Bram Moolenaar0cf6f542005-01-16 21:59:36 +0000247MKDIR = mkdir -p
Bram Moolenaar071d4272004-06-13 20:20:40 +0000248WINDRES = i586-pc-mingw32msvc-windres
249else
250# normal (Windows) compilation:
251CC = gcc
252ifneq (sh.exe, $(SHELL))
253DEL = rm
Bram Moolenaar0cf6f542005-01-16 21:59:36 +0000254MKDIR = mkdir -p
Bram Moolenaar071d4272004-06-13 20:20:40 +0000255DIRSLASH = /
256else
257DEL = del
Bram Moolenaar0cf6f542005-01-16 21:59:36 +0000258MKDIR = mkdir
Bram Moolenaar071d4272004-06-13 20:20:40 +0000259DIRSLASH = \\
260endif
261WINDRES = windres
262endif
263
264#>>>>> end of choices
265###########################################################################
266
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000267CFLAGS = -Iproto $(DEFINES) -pipe -w -march=$(ARCH) -Wall
Bram Moolenaar071d4272004-06-13 20:20:40 +0000268
269ifdef GETTEXT
Bram Moolenaar8cd06ca2005-02-28 22:44:58 +0000270DEFINES += -DHAVE_GETTEXT -DHAVE_LOCALE_H
Bram Moolenaar071d4272004-06-13 20:20:40 +0000271GETTEXTINCLUDE = $(GETTEXT)/include
272GETTEXTLIB = $(INTLPATH)
273ifeq (yes, $(GETTEXT))
Bram Moolenaar8cd06ca2005-02-28 22:44:58 +0000274DEFINES += -DDYNAMIC_GETTEXT
Bram Moolenaar071d4272004-06-13 20:20:40 +0000275else
276ifdef DYNAMIC_GETTEXT
Bram Moolenaar8cd06ca2005-02-28 22:44:58 +0000277DEFINES += -D$(DYNAMIC_GETTEXT)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000278ifdef GETTEXT_DYNAMIC
279DEFINES += -DGETTEXT_DYNAMIC -DGETTEXT_DLL=\"$(GETTEXT_DYNAMIC)\"
280endif
281endif
282endif
283endif
284
285ifdef PERL
286CFLAGS += -I$(PERLLIBS) -DFEAT_PERL -L$(PERLLIBS)
287ifeq (yes, $(DYNAMIC_PERL))
288CFLAGS += -DDYNAMIC_PERL -DDYNAMIC_PERL_DLL=\"perl$(PERL_VER).dll\"
289endif
290endif
291
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000292ifdef MZSCHEME
293CFLAGS += -I$(MZSCHEME)/include -DFEAT_MZSCHEME -DMZSCHEME_COLLECTS=\"$(MZSCHEME)/collects\"
Bram Moolenaar281bdce2005-01-25 21:53:18 +0000294ifeq (yes, $(DYNAMIC_MZSCHEME))
295CFLAGS += -DDYNAMIC_MZSCHEME -DDYNAMIC_MZSCH_DLL=\"libmzsch$(MZSCHEME_VER).dll\" -DDYNAMIC_MZGC_DLL=\"libmzgc$(MZSCHEME_VER).dll\"
296endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000297endif
298
Bram Moolenaar071d4272004-06-13 20:20:40 +0000299ifdef RUBY
300CFLAGS += -DFEAT_RUBY $(RUBYINC)
301ifeq (yes, $(DYNAMIC_RUBY))
302CFLAGS += -DDYNAMIC_RUBY -DDYNAMIC_RUBY_DLL=\"$(RUBY_INSTALL_NAME).dll\"
303CFLAGS += -DDYNAMIC_RUBY_VER=$(RUBY_VER)
304endif
305endif
306
307ifdef PYTHON
308CFLAGS += -DFEAT_PYTHON $(PYTHONINC)
309ifeq (yes, $(DYNAMIC_PYTHON))
310CFLAGS += -DDYNAMIC_PYTHON -DDYNAMIC_PYTHON_DLL=\"python$(PYTHON_VER).dll\"
311endif
312endif
313
314ifdef TCL
315CFLAGS += -DFEAT_TCL $(TCLINC)
316ifeq (yes, $(DYNAMIC_TCL))
317CFLAGS += -DDYNAMIC_TCL -DDYNAMIC_TCL_DLL=\"tcl$(TCL_VER).dll\"
318endif
319endif
320
321ifeq ($(POSTSCRIPT),yes)
322DEFINES += -DMSWINPS
323endif
324
325ifeq (yes, $(OLE))
326DEFINES += -DFEAT_OLE
327endif
328
329ifeq ($(CSCOPE),yes)
330DEFINES += -DFEAT_CSCOPE
331endif
332
333ifeq ($(NETBEANS),yes)
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +0000334# Only allow NETBEANS for a GUI build.
335ifeq (yes, $(GUI))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000336DEFINES += -DFEAT_NETBEANS_INTG
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +0000337
338ifeq ($(NBDEBUG), yes)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000339DEFINES += -DNBDEBUG
340NBDEBUG_INCL = nbdebug.h
341NBDEBUG_SRC = nbdebug.c
342endif
343endif
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +0000344endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000345
346ifdef XPM
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +0000347# Only allow XPM for a GUI build.
348ifeq (yes, $(GUI))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000349CFLAGS += -DFEAT_XPM_W32 -I $(XPM)/include
350endif
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +0000351endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000352
353ifeq ($(DEBUG),yes)
354CFLAGS += -g -fstack-check
355DEBUG_SUFFIX=d
356else
357ifeq ($(OPTIMIZE), SIZE)
358CFLAGS += -Os
359else
360ifeq ($(OPTIMIZE), MAXSPEED)
361CFLAGS += -O3
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000362CFLAGS += -fomit-frame-pointer -freg-struct-return
Bram Moolenaar071d4272004-06-13 20:20:40 +0000363else # SPEED
364CFLAGS += -O2
365endif
366endif
367CFLAGS += -s
368endif
369
Bram Moolenaara3ffd9c2005-07-21 21:03:15 +0000370LIB = -lkernel32 -luser32 -lgdi32 -ladvapi32 -lcomdlg32 -lcomctl32 -lversion
Bram Moolenaar44ecf652005-03-07 23:09:59 +0000371GUIOBJ = $(OUTDIR)/gui.o $(OUTDIR)/gui_w32.o $(OUTDIR)/gui_beval.o $(OUTDIR)/os_w32exe.o
Bram Moolenaar071d4272004-06-13 20:20:40 +0000372OBJ = \
373 $(OUTDIR)/buffer.o \
374 $(OUTDIR)/charset.o \
375 $(OUTDIR)/diff.o \
376 $(OUTDIR)/digraph.o \
377 $(OUTDIR)/edit.o \
378 $(OUTDIR)/eval.o \
379 $(OUTDIR)/ex_cmds.o \
380 $(OUTDIR)/ex_cmds2.o \
381 $(OUTDIR)/ex_docmd.o \
382 $(OUTDIR)/ex_eval.o \
383 $(OUTDIR)/ex_getln.o \
384 $(OUTDIR)/fileio.o \
385 $(OUTDIR)/fold.o \
386 $(OUTDIR)/getchar.o \
Bram Moolenaar58d98232005-07-23 22:25:46 +0000387 $(OUTDIR)/hardcopy.o \
Bram Moolenaarc01140a2006-03-24 22:21:52 +0000388 $(OUTDIR)/hashtab.o \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000389 $(OUTDIR)/main.o \
390 $(OUTDIR)/mark.o \
391 $(OUTDIR)/memfile.o \
392 $(OUTDIR)/memline.o \
393 $(OUTDIR)/menu.o \
394 $(OUTDIR)/message.o \
395 $(OUTDIR)/misc1.o \
396 $(OUTDIR)/misc2.o \
397 $(OUTDIR)/move.o \
398 $(OUTDIR)/mbyte.o \
399 $(OUTDIR)/normal.o \
400 $(OUTDIR)/ops.o \
401 $(OUTDIR)/option.o \
402 $(OUTDIR)/os_win32.o \
403 $(OUTDIR)/os_mswin.o \
404 $(OUTDIR)/pathdef.o \
Bram Moolenaarc01140a2006-03-24 22:21:52 +0000405 $(OUTDIR)/popupmnu.o \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000406 $(OUTDIR)/quickfix.o \
407 $(OUTDIR)/regexp.o \
408 $(OUTDIR)/screen.o \
409 $(OUTDIR)/search.o \
Bram Moolenaar6bb68362005-03-22 23:03:44 +0000410 $(OUTDIR)/spell.o \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000411 $(OUTDIR)/syntax.o \
412 $(OUTDIR)/tag.o \
413 $(OUTDIR)/term.o \
414 $(OUTDIR)/ui.o \
415 $(OUTDIR)/undo.o \
416 $(OUTDIR)/version.o \
417 $(OUTDIR)/vimrc.o \
418 $(OUTDIR)/window.o
419
420ifdef PERL
421OBJ += $(OUTDIR)/if_perl.o
422endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000423ifdef MZSCHEME
424OBJ += $(OUTDIR)/if_mzsch.o
425MZSCHEME_INCL = if_mzsch.h
Bram Moolenaar9e70cf12009-05-26 20:59:55 +0000426ifeq (yes,$(MZSCHEME_GENERATE_BASE))
427CFLAGS += -DINCLUDE_MZSCHEME_BASE
428MZ_EXTRA_DEP += mzscheme_base.c
429endif
430ifeq (yes,$(MZSCHEME_PRECISE_GC))
431CFLAGS += -DMZ_PRECISE_GC
432endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000433endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000434ifdef PYTHON
435OBJ += $(OUTDIR)/if_python.o
436endif
437ifdef RUBY
438OBJ += $(OUTDIR)/if_ruby.o
439endif
440ifdef TCL
441OBJ += $(OUTDIR)/if_tcl.o
442endif
443ifeq ($(CSCOPE),yes)
444OBJ += $(OUTDIR)/if_cscope.o
445endif
446ifeq ($(NETBEANS),yes)
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +0000447# Only allow NETBEANS for a GUI build.
448ifeq (yes, $(GUI))
Bram Moolenaar44ecf652005-03-07 23:09:59 +0000449OBJ += $(OUTDIR)/netbeans.o
Bram Moolenaar071d4272004-06-13 20:20:40 +0000450LIB += -lwsock32
451endif
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +0000452endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000453ifdef XPM
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +0000454# Only allow XPM for a GUI build.
455ifeq (yes, $(GUI))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000456OBJ += $(OUTDIR)/xpm_w32.o
457# You'll need libXpm.a from http://gnuwin32.sf.net
458LIB += -L $(XPM)/lib -lXpm
459endif
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +0000460endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000461
462
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000463ifdef MZSCHEME
464MZSCHEME_SUFFIX = Z
465endif
466
Bram Moolenaar071d4272004-06-13 20:20:40 +0000467ifeq ($(GUI),yes)
468TARGET := gvim$(DEBUG_SUFFIX).exe
469DEFINES += $(DEF_GUI)
470OBJ += $(GUIOBJ)
471LFLAGS += -mwindows
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000472OUTDIR = gobj$(DEBUG_SUFFIX)$(MZSCHEME_SUFFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000473else
474TARGET := vim$(DEBUG_SUFFIX).exe
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000475OUTDIR = obj$(DEBUG_SUFFIX)$(MZSCHEME_SUFFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000476endif
477
478ifdef GETTEXT
479ifneq (yes, $(GETTEXT))
480CFLAGS += -I$(GETTEXTINCLUDE)
481ifndef STATIC_GETTEXT
482LIB += -L$(GETTEXTLIB) -l$(INTLLIB)
483ifeq (USE_SAFE_GETTEXT_DLL, $(DYNAMIC_GETTEXT))
484OBJ+=$(SAFE_GETTEXT_DLL_OBJ)
485endif
486else
487LIB += -L$(GETTEXTLIB) -lintl
488endif
489endif
490endif
491
492ifdef PERL
493ifeq (no, $(DYNAMIC_PERL))
494LIB += -lperl$(PERL_VER)
495endif
496endif
497
498ifdef TCL
499LIB += -L$(TCL)/lib
500ifeq (yes, $(DYNAMIC_TCL))
501LIB += -ltclstub$(TCL_VER)
502else
503LIB += -ltcl$(TCL_VER)
504endif
505endif
506
507ifeq (yes, $(OLE))
508LIB += -loleaut32 -lstdc++
509OBJ += $(OUTDIR)/if_ole.o
510endif
511
512ifeq (yes, $(MBYTE))
513DEFINES += -DFEAT_MBYTE
514endif
515
516ifeq (yes, $(IME))
517DEFINES += -DFEAT_MBYTE_IME
518ifeq (yes, $(DYNAMIC_IME))
519DEFINES += -DDYNAMIC_IME
520else
521LIB += -limm32
522endif
523endif
524
525ifdef ICONV
526ifneq (yes, $(ICONV))
527LIB += -L$(ICONV)
528CFLAGS += -I$(ICONV)
529endif
530DEFINES+=-DDYNAMIC_ICONV
531endif
532
533all: $(TARGET) vimrun.exe xxd/xxd.exe install.exe uninstal.exe GvimExt/gvimext.dll
534
535vimrun.exe: vimrun.c
536 $(CC) $(CFLAGS) -o vimrun.exe vimrun.c $(LIB)
537
538install.exe: dosinst.c
539 $(CC) $(CFLAGS) -o install.exe dosinst.c $(LIB) -lole32 -luuid
540
541uninstal.exe: uninstal.c
542 $(CC) $(CFLAGS) -o uninstal.exe uninstal.c $(LIB)
543
544$(TARGET): $(OUTDIR) $(OBJ)
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000545 $(CC) $(CFLAGS) $(LFLAGS) -o $@ $(OBJ) $(LIB) -lole32 -luuid $(MZSCHEME_LIBDIR) $(MZSCHEME_LIB) $(PYTHONLIB) $(RUBYLIB)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000546
547upx: exes
548 upx gvim.exe
549 upx vim.exe
550
551xxd/xxd.exe: xxd/xxd.c
552 $(MAKE) -C xxd -f Make_cyg.mak
553
554GvimExt/gvimext.dll: GvimExt/gvimext.cpp GvimExt/gvimext.rc GvimExt/gvimext.h
555 $(MAKE) -C GvimExt -f Make_ming.mak
556
557clean:
558 -$(DEL) $(OUTDIR)$(DIRSLASH)*.o
559 -$(DEL) $(OUTDIR)$(DIRSLASH)*.res
560 -rmdir $(OUTDIR)
561 -$(DEL) *.exe
562 -$(DEL) pathdef.c
563ifdef PERL
564 -$(DEL) if_perl.c
565endif
566 $(MAKE) -C GvimExt -f Make_ming.mak clean
567 $(MAKE) -C xxd -f Make_cyg.mak clean
568
569###########################################################################
570INCL = vim.h feature.h os_win32.h os_dos.h ascii.h keymap.h term.h macros.h \
571 structs.h regexp.h option.h ex_cmds.h proto.h globals.h farsi.h \
572 gui.h
573
574$(OUTDIR)/%.o : %.c $(INCL)
575 $(CC) -c $(CFLAGS) $< -o $@
576
577$(OUTDIR)/vimres.res: vim.rc version.h gui_w32_rc.h
578 $(WINDRES) $(DEFINES) vim.rc $(OUTDIR)/vimres.res
579
580$(OUTDIR)/vimrc.o: $(OUTDIR)/vimres.res
581 $(WINDRES) $(OUTDIR)/vimres.res $(OUTDIR)/vimrc.o
582
583$(OUTDIR):
Bram Moolenaar0cf6f542005-01-16 21:59:36 +0000584 $(MKDIR) $(OUTDIR)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000585
586$(OUTDIR)/ex_docmd.o: ex_docmd.c $(INCL) ex_cmds.h
587 $(CC) -c $(CFLAGS) ex_docmd.c -o $(OUTDIR)/ex_docmd.o
588
589$(OUTDIR)/ex_eval.o: ex_eval.c $(INCL) ex_cmds.h
590 $(CC) -c $(CFLAGS) ex_eval.c -o $(OUTDIR)/ex_eval.o
591
592$(OUTDIR)/if_cscope.o: if_cscope.c $(INCL) if_cscope.h
593 $(CC) -c $(CFLAGS) if_cscope.c -o $(OUTDIR)/if_cscope.o
594
Bram Moolenaar8c69d532007-08-12 13:25:01 +0000595# Remove -D__IID_DEFINED__ for newer versions of the w32api
Bram Moolenaar071d4272004-06-13 20:20:40 +0000596$(OUTDIR)/if_ole.o: if_ole.cpp $(INCL)
Bram Moolenaar8c69d532007-08-12 13:25:01 +0000597 $(CC) $(CFLAGS) -c -o $(OUTDIR)/if_ole.o if_ole.cpp
Bram Moolenaar071d4272004-06-13 20:20:40 +0000598
599$(OUTDIR)/if_ruby.o: if_ruby.c $(INCL)
600ifeq (16, $(RUBY))
601 $(CC) $(CFLAGS) -U_WIN32 -c -o $(OUTDIR)/if_ruby.o if_ruby.c
602endif
603
604if_perl.c: if_perl.xs typemap
605 perl $(PERLLIB)/ExtUtils/xsubpp -prototypes -typemap \
606 $(PERLLIB)/ExtUtils/typemap if_perl.xs > $@
607
608$(OUTDIR)/netbeans.o: netbeans.c $(INCL) $(NBDEBUG_INCL) $(NBDEBUG_SRC)
609 $(CC) -c $(CFLAGS) netbeans.c -o $(OUTDIR)/netbeans.o
610
Bram Moolenaar9e70cf12009-05-26 20:59:55 +0000611$(OUTDIR)/if_mzsch.o: if_mzsch.c $(INCL) if_mzsch.h $(MZ_EXTRA_DEP)
612 $(CC) -c $(CFLAGS) if_mzsch.c -o $(OUTDIR)/if_mzsch.o
613
614mzscheme_base.c:
615 $(MZSCHEME)/mzc --c-mods mzscheme_base.c ++lib scheme/base
616
Bram Moolenaar071d4272004-06-13 20:20:40 +0000617pathdef.c: $(INCL)
618ifneq (sh.exe, $(SHELL))
619 @echo creating pathdef.c
620 @echo '/* pathdef.c */' > pathdef.c
621 @echo '#include "vim.h"' >> pathdef.c
622 @echo 'char_u *default_vim_dir = (char_u *)"$(VIMRCLOC)";' >> pathdef.c
623 @echo 'char_u *default_vimruntime_dir = (char_u *)"$(VIMRUNTIMEDIR)";' >> pathdef.c
624 @echo 'char_u *all_cflags = (char_u *)"$(CC) $(CFLAGS)";' >> pathdef.c
Bram Moolenaara40c5002005-01-09 21:16:21 +0000625 @echo 'char_u *all_lflags = (char_u *)"$(CC) $(CFLAGS) $(LFLAGS) -o $(TARGET) $(LIB) -lole32 -luuid $(MZSCHEME_LIBDIR) $(MZSCHEME_LIB) $(PYTHONLIB) $(RUBYLIB)";' >> pathdef.c
Bram Moolenaar071d4272004-06-13 20:20:40 +0000626 @echo 'char_u *compiled_user = (char_u *)"$(USERNAME)";' >> pathdef.c
627 @echo 'char_u *compiled_sys = (char_u *)"$(USERDOMAIN)";' >> pathdef.c
628else
629 @echo creating pathdef.c
630 @echo /* pathdef.c */ > pathdef.c
631 @echo #include "vim.h" >> pathdef.c
632 @echo char_u *default_vim_dir = (char_u *)"$(VIMRCLOC)"; >> pathdef.c
633 @echo char_u *default_vimruntime_dir = (char_u *)"$(VIMRUNTIMEDIR)"; >> pathdef.c
634 @echo char_u *all_cflags = (char_u *)"$(CC) $(CFLAGS)"; >> pathdef.c
Bram Moolenaara40c5002005-01-09 21:16:21 +0000635 @echo char_u *all_lflags = (char_u *)"$(CC) $(CFLAGS) $(LFLAGS) -o $(TARGET) $(LIB) -lole32 -luuid $(MZSCHEME_LIBDIR) $(MZSCHEME_LIB) $(PYTHONLIB) $(RUBYLIB)"; >> pathdef.c
Bram Moolenaar071d4272004-06-13 20:20:40 +0000636 @echo char_u *compiled_user = (char_u *)"$(USERNAME)"; >> pathdef.c
637 @echo char_u *compiled_sys = (char_u *)"$(USERDOMAIN)"; >> pathdef.c
638endif