blob: 79628a823c887683dd06b9aea140ddd865e0c339 [file] [log] [blame]
Bram Moolenaar4f7e8212014-11-05 13:53:32 +01001# Makefile for VIM on Win32 (Cygwin and MinGW)
2#
3# This file contains common part for Cygwin and MinGW and it is included
4# from Make_cyg.mak and Make_ming.mak.
5#
6# Info at http://www.mingw.org
7# Alternative x86 and 64-builds: http://mingw-w64.sourceforge.net
8# Also requires GNU make, which you can download from the same sites.
9# Get missing libraries from http://gnuwin32.sf.net.
10#
11# Tested on Win32 NT 4 and Win95.
12#
13# To make everything, just 'make -f Make_ming.mak'.
14# To make just e.g. gvim.exe, 'make -f Make_ming.mak gvim.exe'.
15# After a run, you can 'make -f Make_ming.mak clean' to clean up.
16#
17# NOTE: Sometimes 'GNU Make' will stop after building vimrun.exe -- I think
18# it's just run out of memory or something. Run again, and it will continue
19# with 'xxd'.
20#
21# "make upx" makes *compressed* versions of the 32 bit GUI and console EXEs,
22# using the excellent UPX compressor:
23# http://upx.sourceforge.net/
24# "make mpress" uses the MPRESS compressor for 32- and 64-bit EXEs:
25# http://www.matcode.com/mpress.htm
26#
27# Maintained by Ron Aaron <ronaharon@yahoo.com> et al.
28# Updated 2014 Oct 13.
29
30#>>>>> choose options:
31# set to yes for a debug build
32DEBUG=no
33# set to SIZE for size, SPEED for speed, MAXSPEED for maximum optimization
34OPTIMIZE=MAXSPEED
35# set to yes to make gvim, no for vim
36GUI=yes
37# set to yes if you want to use DirectWrite (DirectX)
38# MinGW-w64 is needed, and ARCH should be set to i686 or x86-64.
39DIRECTX=no
40# FEATURES=[TINY | SMALL | NORMAL | BIG | HUGE]
41# Set to TINY to make minimal version (few features).
42FEATURES=BIG
43# Set to one of i386, i486, i586, i686 as the minimum target processor.
44# For amd64/x64 architecture set ARCH=x86-64 .
45ARCH=i386
46# Set to yes to cross-compile from unix; no=native Windows (and Cygwin).
47CROSS=no
48# Set to path to iconv.h and libiconv.a to enable using 'iconv.dll'.
49#ICONV="."
50ICONV=yes
51GETTEXT=yes
52# Set to yes to include multibyte support.
53MBYTE=yes
54# Set to yes to include IME support.
55IME=yes
56DYNAMIC_IME=yes
57# Set to yes to enable writing a postscript file with :hardcopy.
58POSTSCRIPT=no
59# Set to yes to enable OLE support.
60OLE=no
61# Set the default $(WINVER) to make it work with pre-Win2k.
62ifndef WINVER
63WINVER = 0x0500
64endif
65# Set to yes to enable Cscope support.
66CSCOPE=yes
67# Set to yes to enable Netbeans support.
68NETBEANS=$(GUI)
69
70
71# Link against the shared version of libstdc++ by default. Set
72# STATIC_STDCPLUS to "yes" to link against static version instead.
73ifndef STATIC_STDCPLUS
74STATIC_STDCPLUS=no
75endif
76
77# If the user doesn't want gettext, undefine it.
78ifeq (no, $(GETTEXT))
79GETTEXT=
80endif
81# Added by E.F. Amatria <eferna1@platea.ptic.mec.es> 2001 Feb 23
82# Uncomment the first line and one of the following three if you want Native Language
83# Support. You'll need gnu_gettext.win32, a MINGW32 Windows PORT of gettext by
84# Franco Bez <franco.bez@gmx.de>. It may be found at
85# http://home.a-city.de/franco.bez/gettext/gettext_win32_en.html
86# Tested with mingw32 with GCC-2.95.2 on Win98
87# Updated 2001 Jun 9
88#GETTEXT=c:/gettext.win32.msvcrt
89#STATIC_GETTEXT=USE_STATIC_GETTEXT
90#DYNAMIC_GETTEXT=USE_GETTEXT_DLL
91#DYNAMIC_GETTEXT=USE_SAFE_GETTEXT_DLL
92SAFE_GETTEXT_DLL_OBJ = $(GETTEXT)/src/safe_gettext_dll/safe_gettext_dll.o
93# Alternatively, if you uncomment the two following lines, you get a "safe" version
94# without linking the safe_gettext_dll.o object file.
95#DYNAMIC_GETTEXT=DYNAMIC_GETTEXT
96#GETTEXT_DYNAMIC=gnu_gettext.dll
97INTLPATH=$(GETTEXT)/lib/mingw32
98INTLLIB=gnu_gettext
99
100# If you are using gettext-0.10.35 from http://sourceforge.net/projects/gettext
101# or gettext-0.10.37 from http://sourceforge.net/projects/mingwrep/
102# uncomment the following, but I can't build a static version with them, ?-(|
103#GETTEXT=c:/gettext-0.10.37-20010430
104#STATIC_GETTEXT=USE_STATIC_GETTEXT
105#DYNAMIC_GETTEXT=DYNAMIC_GETTEXT
106#INTLPATH=$(GETTEXT)/lib
107#INTLLIB=intl
108
109# Perl interface:
110# PERL=[Path to Perl directory] (Set inside Make_cyg.mak or Make_ming.mak)
111# DYNAMIC_PERL=yes (to load the Perl DLL dynamically)
112# PERL_VER=[Perl version, eg 56, 58, 510] (default is 56)
113ifdef PERL
114ifndef PERL_VER
115PERL_VER=56
116endif
117ifndef DYNAMIC_PERL
118DYNAMIC_PERL=yes
119endif
120# on Linux, for cross-compile, it's here:
121#PERLLIB=/home/ron/ActivePerl/lib
122# on NT, it's here:
123PERLEXE=$(PERL)/bin/perl
124PERLLIB=$(PERL)/lib
125PERLLIBS=$(PERLLIB)/Core
126ifeq ($(UNDER_CYGWIN),yes)
127PERLTYPEMAP:=$(shell cygpath -m $(PERLLIB)/ExtUtils/typemap)
128XSUBPPTRY:=$(shell cygpath -m $(PERLLIB)/ExtUtils/xsubpp)
129else
130PERLTYPEMAP=$(PERLLIB)/ExtUtils/typemap
131XSUBPPTRY=$(PERLLIB)/ExtUtils/xsubpp
132endif
133XSUBPP_EXISTS=$(shell $(PERLEXE) -e "print 1 unless -e '$(XSUBPPTRY)'")
134ifeq "$(XSUBPP_EXISTS)" ""
Bram Moolenaar345326a2014-11-06 10:03:01 +0100135XSUBPP=$(PERLEXE) $(XSUBPPTRY)
Bram Moolenaar4f7e8212014-11-05 13:53:32 +0100136else
137XSUBPP=xsubpp
138endif
139endif
140
141# Lua interface:
142# LUA=[Path to Lua directory] (Set inside Make_cyg.mak or Make_ming.mak)
143# DYNAMIC_LUA=yes (to load the Lua DLL dynamically)
144# LUA_VER=[Lua version, eg 51, 52] (default is 51)
145ifdef LUA
146ifndef DYNAMIC_LUA
147DYNAMIC_LUA=yes
148endif
149
150ifndef LUA_VER
151LUA_VER=51
152endif
153
154ifeq (no,$(DYNAMIC_LUA))
155LUA_LIB = -L$(LUA)/lib -llua
156endif
157
158endif
159
160# MzScheme interface:
161# MZSCHEME=[Path to MzScheme directory] (Set inside Make_cyg.mak or Make_ming.mak)
162# DYNAMIC_MZSCHEME=yes (to load the MzScheme DLL dynamically)
163# MZSCHEME_VER=[MzScheme version] (default is 205_000)
164# MZSCHEME_DEBUG=no
165ifdef MZSCHEME
166ifndef DYNAMIC_MZSCHEME
167DYNAMIC_MZSCHEME=yes
168endif
169
170ifndef MZSCHEME_VER
171MZSCHEME_VER=205_000
172endif
173
Bram Moolenaar4f7e8212014-11-05 13:53:32 +0100174# for version 4.x we need to generate byte-code for Scheme base
175ifndef MZSCHEME_GENERATE_BASE
176MZSCHEME_GENERATE_BASE=no
177endif
178
Bram Moolenaar4e640bd2016-01-16 16:20:38 +0100179ifneq ($(wildcard $(MZSCHEME)/lib/msvc/libmzsch$(MZSCHEME_VER).lib),)
Bram Moolenaar4f7e8212014-11-05 13:53:32 +0100180MZSCHEME_MAIN_LIB=mzsch
181else
182MZSCHEME_MAIN_LIB=racket
183endif
184
Bram Moolenaar4e640bd2016-01-16 16:20:38 +0100185ifndef MZSCHEME_PRECISE_GC
186MZSCHEME_PRECISE_GC=no
187ifneq ($(wildcard $(MZSCHEME)\lib\lib$(MZSCHEME_MAIN_LIB)$(MZSCHEME_VER).dll),)
188ifeq ($(wildcard $(MZSCHEME)\lib\libmzgc$(MZSCHEME_VER).dll),)
189MZSCHEME_PRECISE_GC=yes
190endif
191else
192ifneq ($(wildcard $(MZSCHEME)\lib\msvc\lib$(MZSCHEME_MAIN_LIB)$(MZSCHEME_VER).lib),)
193ifeq ($(wildcard $(MZSCHEME)\lib\msvc\libmzgc$(MZSCHEME_VER).lib),)
194MZSCHEME_PRECISE_GC=yes
195endif
196endif
197endif
198endif
199
Bram Moolenaar4f7e8212014-11-05 13:53:32 +0100200ifeq (no,$(DYNAMIC_MZSCHEME))
201ifeq (yes,$(MZSCHEME_PRECISE_GC))
202MZSCHEME_LIB=-l$(MZSCHEME_MAIN_LIB)$(MZSCHEME_VER)
203else
Bram Moolenaar4e640bd2016-01-16 16:20:38 +0100204MZSCHEME_LIB=-l$(MZSCHEME_MAIN_LIB)$(MZSCHEME_VER) -lmzgc$(MZSCHEME_VER)
Bram Moolenaar4f7e8212014-11-05 13:53:32 +0100205endif
206# the modern MinGW can dynamically link to dlls directly.
207# point MZSCHEME_DLLS to where you put libmzschXXXXXXX.dll and libgcXXXXXXX.dll
208ifndef MZSCHEME_DLLS
209MZSCHEME_DLLS=$(MZSCHEME)
210endif
211MZSCHEME_LIBDIR=-L$(MZSCHEME_DLLS) -L$(MZSCHEME_DLLS)\lib
212endif
213
214endif
215
216# Python interface:
217# PYTHON=[Path to Python directory] (Set inside Make_cyg.mak or Make_ming.mak)
218# DYNAMIC_PYTHON=yes (to load the Python DLL dynamically)
219# PYTHON_VER=[Python version, eg 22, 23, ..., 27] (default is 22)
220ifdef PYTHON
221ifndef DYNAMIC_PYTHON
222DYNAMIC_PYTHON=yes
223endif
224
225ifndef PYTHON_VER
Bram Moolenaar3c6f92e2016-01-02 20:26:36 +0100226PYTHON_VER=27
227endif
228ifndef DYNAMIC_PYTHON_DLL
229DYNAMIC_PYTHON_DLL=python$(PYTHON_VER).dll
230endif
231ifdef PYTHON_HOME
232PYTHON_HOME_DEF=-DPYTHON_HOME=\"$(PYTHON_HOME)\"
Bram Moolenaar4f7e8212014-11-05 13:53:32 +0100233endif
234
235ifeq (no,$(DYNAMIC_PYTHON))
236PYTHONLIB=-L$(PYTHON)/libs -lpython$(PYTHON_VER)
237endif
238# my include files are in 'win32inc' on Linux, and 'include' in the standard
239# NT distro (ActiveState)
Bram Moolenaar3c6f92e2016-01-02 20:26:36 +0100240ifndef PYTHONINC
Bram Moolenaar4f7e8212014-11-05 13:53:32 +0100241ifeq ($(CROSS),no)
242PYTHONINC=-I $(PYTHON)/include
243else
244PYTHONINC=-I $(PYTHON)/win32inc
245endif
246endif
Bram Moolenaar3c6f92e2016-01-02 20:26:36 +0100247endif
Bram Moolenaar4f7e8212014-11-05 13:53:32 +0100248
249# Python3 interface:
250# PYTHON3=[Path to Python3 directory] (Set inside Make_cyg.mak or Make_ming.mak)
251# DYNAMIC_PYTHON3=yes (to load the Python3 DLL dynamically)
252# PYTHON3_VER=[Python3 version, eg 31, 32] (default is 31)
253ifdef PYTHON3
254ifndef DYNAMIC_PYTHON3
255DYNAMIC_PYTHON3=yes
256endif
257
258ifndef PYTHON3_VER
259PYTHON3_VER=31
260endif
261
262ifeq (no,$(DYNAMIC_PYTHON3))
263PYTHON3LIB=-L$(PYTHON3)/libs -lPYTHON$(PYTHON3_VER)
264endif
265
266ifeq ($(CROSS),no)
267PYTHON3INC=-I $(PYTHON3)/include
268else
269PYTHON3INC=-I $(PYTHON3)/win32inc
270endif
271endif
272
273# TCL interface:
274# TCL=[Path to TCL directory] (Set inside Make_cyg.mak or Make_ming.mak)
275# DYNAMIC_TCL=yes (to load the TCL DLL dynamically)
276# TCL_VER=[TCL version, eg 83, 84] (default is 83)
Bram Moolenaareca99bd2016-01-07 22:50:05 +0100277# TCL_VER_LONG=[Tcl version, eg 8.3] (default is 8.3)
278# You must set TCL_VER_LONG when you set TCL_VER.
Bram Moolenaar4f7e8212014-11-05 13:53:32 +0100279ifdef TCL
280ifndef DYNAMIC_TCL
281DYNAMIC_TCL=yes
282endif
283ifndef TCL_VER
284TCL_VER = 83
285endif
Bram Moolenaareca99bd2016-01-07 22:50:05 +0100286ifndef TCL_VER_LONG
287TCL_VER_LONG = 8.3
288endif
Bram Moolenaar4f7e8212014-11-05 13:53:32 +0100289TCLINC += -I$(TCL)/include
290endif
291
292
293# Ruby interface:
294# RUBY=[Path to Ruby directory] (Set inside Make_cyg.mak or Make_ming.mak)
295# DYNAMIC_RUBY=yes (to load the Ruby DLL dynamically)
296# RUBY_VER=[Ruby version, eg 18, 19, 20] (default is 18)
297# RUBY_VER_LONG=[Ruby version, eg 1.8, 1.9.1, 2.0.0] (default is 1.8)
298# You must set RUBY_VER_LONG when changing RUBY_VER.
299# RUBY_API_VER is derived from RUBY_VER_LONG.
300# Note: If you use Ruby 1.9.3, set as follows:
301# RUBY_VER=19
302# RUBY_VER_LONG=1.9.1 (not 1.9.3, because the API version is 1.9.1.)
303ifdef RUBY
304ifndef DYNAMIC_RUBY
305DYNAMIC_RUBY=yes
306endif
307# Set default value
308ifndef RUBY_VER
309RUBY_VER = 18
310endif
311ifndef RUBY_VER_LONG
312RUBY_VER_LONG = 1.8
313endif
314ifndef RUBY_API_VER
315RUBY_API_VER = $(subst .,,$(RUBY_VER_LONG))
316endif
317
318ifndef RUBY_PLATFORM
319ifeq ($(RUBY_VER), 16)
320RUBY_PLATFORM = i586-mswin32
321else
322ifneq ($(wildcard $(RUBY)/lib/ruby/$(RUBY_VER_LONG)/i386-mingw32),)
323RUBY_PLATFORM = i386-mingw32
324else
325ifneq ($(wildcard $(RUBY)/lib/ruby/$(RUBY_VER_LONG)/x64-mingw32),)
326RUBY_PLATFORM = x64-mingw32
327else
328RUBY_PLATFORM = i386-mswin32
329endif
330endif
331endif
332endif
333
334ifndef RUBY_INSTALL_NAME
335ifeq ($(RUBY_VER), 16)
336RUBY_INSTALL_NAME = mswin32-ruby$(RUBY_API_VER)
337else
Bram Moolenaar0bee2fe2016-01-07 22:45:09 +0100338ifndef RUBY_MSVCRT_NAME
339# Base name of msvcrXX.dll which is used by ruby's dll.
340RUBY_MSVCRT_NAME = msvcrt
341endif
Bram Moolenaar4f7e8212014-11-05 13:53:32 +0100342ifeq ($(ARCH),x86-64)
Bram Moolenaar0bee2fe2016-01-07 22:45:09 +0100343RUBY_INSTALL_NAME = x64-$(RUBY_MSVCRT_NAME)-ruby$(RUBY_API_VER)
Bram Moolenaar4f7e8212014-11-05 13:53:32 +0100344else
Bram Moolenaar0bee2fe2016-01-07 22:45:09 +0100345RUBY_INSTALL_NAME = $(RUBY_MSVCRT_NAME)-ruby$(RUBY_API_VER)
Bram Moolenaar4f7e8212014-11-05 13:53:32 +0100346endif
347endif
348endif
349
350ifeq (19, $(word 1,$(sort 19 $(RUBY_VER))))
351RUBY_19_OR_LATER = 1
352endif
353
354RUBYINC = -I $(RUBY)/lib/ruby/$(RUBY_VER_LONG)/$(RUBY_PLATFORM)
355ifdef RUBY_19_OR_LATER
356RUBYINC += -I $(RUBY)/include/ruby-$(RUBY_VER_LONG) -I $(RUBY)/include/ruby-$(RUBY_VER_LONG)/$(RUBY_PLATFORM)
357endif
358ifeq (no, $(DYNAMIC_RUBY))
359RUBYLIB = -L$(RUBY)/lib -l$(RUBY_INSTALL_NAME)
360endif
361
362endif # RUBY
363
364# See feature.h for a list of options.
365# Any other defines can be included here.
366DEF_GUI=-DFEAT_GUI_W32 -DFEAT_CLIPBOARD
367DEFINES=-DWIN32 -DWINVER=$(WINVER) -D_WIN32_WINNT=$(WINVER) \
368 -DHAVE_PATHDEF -DFEAT_$(FEATURES)
369ifeq ($(ARCH),x86-64)
370DEFINES+=-DMS_WIN64
371endif
372ifeq ($(CROSS),yes)
373# cross-compiler prefix:
374ifndef CROSS_COMPILE
375CROSS_COMPILE = i586-pc-mingw32msvc-
376endif
377DEL = rm
378MKDIR = mkdir -p
379DIRSLASH = /
380else
381# normal (Windows) compilation:
382ifndef CROSS_COMPILE
383CROSS_COMPILE =
384endif
385ifneq (sh.exe, $(SHELL))
386DEL = rm
387MKDIR = mkdir -p
388DIRSLASH = /
389else
390DEL = del
391MKDIR = mkdir
392DIRSLASH = \\
393endif
394endif
395CC := $(CROSS_COMPILE)gcc
396CXX := $(CROSS_COMPILE)g++
Bram Moolenaar2d78cd72014-12-13 20:50:09 +0100397ifeq ($(UNDER_CYGWIN),yes)
Bram Moolenaar4f7e8212014-11-05 13:53:32 +0100398WINDRES := $(CROSS_COMPILE)windres
Bram Moolenaar2d78cd72014-12-13 20:50:09 +0100399else
400WINDRES := windres
401endif
Bram Moolenaar4f7e8212014-11-05 13:53:32 +0100402WINDRES_CC = $(CC)
403
404#>>>>> end of choices
405###########################################################################
406
407CFLAGS = -Iproto $(DEFINES) -pipe -w -march=$(ARCH) -Wall
408WINDRES_FLAGS = --preprocessor="$(WINDRES_CC) -E -xc" -DRC_INVOKED
409EXTRA_LIBS =
410
411ifdef GETTEXT
412DEFINES += -DHAVE_GETTEXT -DHAVE_LOCALE_H
413GETTEXTINCLUDE = $(GETTEXT)/include
414GETTEXTLIB = $(INTLPATH)
415ifeq (yes, $(GETTEXT))
416DEFINES += -DDYNAMIC_GETTEXT
417else
418ifdef DYNAMIC_GETTEXT
419DEFINES += -D$(DYNAMIC_GETTEXT)
420ifdef GETTEXT_DYNAMIC
421DEFINES += -DGETTEXT_DYNAMIC -DGETTEXT_DLL=\"$(GETTEXT_DYNAMIC)\"
422endif
423endif
424endif
425endif
426
427ifdef PERL
Bram Moolenaar367fbf12015-06-25 16:13:46 +0200428CFLAGS += -I$(PERLLIBS) -DFEAT_PERL -DPERL_IMPLICIT_CONTEXT -DPERL_IMPLICIT_SYS
Bram Moolenaar4f7e8212014-11-05 13:53:32 +0100429ifeq (yes, $(DYNAMIC_PERL))
430CFLAGS += -DDYNAMIC_PERL -DDYNAMIC_PERL_DLL=\"perl$(PERL_VER).dll\"
431EXTRA_LIBS += -L$(PERLLIBS) -lperl$(PERL_VER)
432endif
433endif
434
435ifdef LUA
436CFLAGS += -I$(LUA)/include -I$(LUA) -DFEAT_LUA
437ifeq (yes, $(DYNAMIC_LUA))
438CFLAGS += -DDYNAMIC_LUA -DDYNAMIC_LUA_DLL=\"lua$(LUA_VER).dll\"
439endif
440endif
441
442ifdef MZSCHEME
Bram Moolenaar4e640bd2016-01-16 16:20:38 +0100443ifndef MZSCHEME_COLLECTS
444MZSCHEME_COLLECTS=$(MZSCHEME)/collects
445ifeq (yes, $(UNDER_CYGWIN))
446MZSCHEME_COLLECTS:=$(shell cygpath -m $(MZSCHEME_COLLECTS) | sed -e 's/ /\\ /g')
447endif
448endif
449CFLAGS += -I$(MZSCHEME)/include -DFEAT_MZSCHEME -DMZSCHEME_COLLECTS=\"$(MZSCHEME_COLLECTS)\"
Bram Moolenaar4f7e8212014-11-05 13:53:32 +0100450ifeq (yes, $(DYNAMIC_MZSCHEME))
Bram Moolenaar4e640bd2016-01-16 16:20:38 +0100451ifeq (yes, $(MZSCHEME_PRECISE_GC))
452# Precise GC does not use separate dll
453CFLAGS += -DDYNAMIC_MZSCHEME -DDYNAMIC_MZSCH_DLL=\"lib$(MZSCHEME_MAIN_LIB)$(MZSCHEME_VER).dll\" -DDYNAMIC_MZGC_DLL=\"lib$(MZSCHEME_MAIN_LIB)$(MZSCHEME_VER).dll\"
454else
Bram Moolenaar4f7e8212014-11-05 13:53:32 +0100455CFLAGS += -DDYNAMIC_MZSCHEME -DDYNAMIC_MZSCH_DLL=\"lib$(MZSCHEME_MAIN_LIB)$(MZSCHEME_VER).dll\" -DDYNAMIC_MZGC_DLL=\"libmzgc$(MZSCHEME_VER).dll\"
456endif
Bram Moolenaar4e640bd2016-01-16 16:20:38 +0100457endif
Bram Moolenaar4f7e8212014-11-05 13:53:32 +0100458ifeq (yes, "$(MZSCHEME_DEBUG)")
459CFLAGS += -DMZSCHEME_FORCE_GC
460endif
461endif
462
463ifdef RUBY
464CFLAGS += -DFEAT_RUBY $(RUBYINC)
465ifeq (yes, $(DYNAMIC_RUBY))
466CFLAGS += -DDYNAMIC_RUBY -DDYNAMIC_RUBY_DLL=\"$(RUBY_INSTALL_NAME).dll\"
467CFLAGS += -DDYNAMIC_RUBY_VER=$(RUBY_VER)
468endif
469ifneq ($(findstring w64-mingw32,$(CC)),)
470# A workaround for MinGW-w64
471CFLAGS += -DHAVE_STRUCT_TIMESPEC -DHAVE_STRUCT_TIMEZONE
472endif
473endif
474
475ifdef PYTHON
476CFLAGS += -DFEAT_PYTHON
477ifeq (yes, $(DYNAMIC_PYTHON))
Bram Moolenaar449538c2016-01-09 17:49:15 +0100478CFLAGS += -DDYNAMIC_PYTHON -DDYNAMIC_PYTHON_DLL=\"$(DYNAMIC_PYTHON_DLL)\"
Bram Moolenaar4f7e8212014-11-05 13:53:32 +0100479endif
480endif
481
482ifdef PYTHON3
483CFLAGS += -DFEAT_PYTHON3
484ifeq (yes, $(DYNAMIC_PYTHON3))
Bram Moolenaar449538c2016-01-09 17:49:15 +0100485CFLAGS += -DDYNAMIC_PYTHON3 -DDYNAMIC_PYTHON3_DLL=\"PYTHON$(PYTHON3_VER).dll\"
Bram Moolenaar4f7e8212014-11-05 13:53:32 +0100486endif
487endif
488
489ifdef TCL
490CFLAGS += -DFEAT_TCL $(TCLINC)
491ifeq (yes, $(DYNAMIC_TCL))
Bram Moolenaareca99bd2016-01-07 22:50:05 +0100492CFLAGS += -DDYNAMIC_TCL -DDYNAMIC_TCL_DLL=\"tcl$(TCL_VER).dll\" -DDYNAMIC_TCL_VER=\"$(TCL_VER_LONG)\"
Bram Moolenaar4f7e8212014-11-05 13:53:32 +0100493endif
494endif
495
496ifeq ($(POSTSCRIPT),yes)
497DEFINES += -DMSWINPS
498endif
499
500ifeq (yes, $(OLE))
501DEFINES += -DFEAT_OLE
502endif
503
504ifeq ($(CSCOPE),yes)
505DEFINES += -DFEAT_CSCOPE
506endif
507
508ifeq ($(NETBEANS),yes)
509# Only allow NETBEANS for a GUI build.
510ifeq (yes, $(GUI))
511DEFINES += -DFEAT_NETBEANS_INTG
512
513ifeq ($(NBDEBUG), yes)
514DEFINES += -DNBDEBUG
515NBDEBUG_INCL = nbdebug.h
516NBDEBUG_SRC = nbdebug.c
517endif
518endif
519endif
520
521# DirectWrite (DirectX)
522ifeq ($(DIRECTX),yes)
523# Only allow DirectWrite for a GUI build.
524ifeq (yes, $(GUI))
525DEFINES += -DFEAT_DIRECTX -DDYNAMIC_DIRECTX
526endif
527endif
528
529# Only allow XPM for a GUI build.
530ifeq (yes, $(GUI))
531
532ifndef XPM
533ifeq ($(ARCH),i386)
534XPM = xpm/x86
535endif
536ifeq ($(ARCH),i486)
537XPM = xpm/x86
538endif
539ifeq ($(ARCH),i586)
540XPM = xpm/x86
541endif
542ifeq ($(ARCH),i686)
543XPM = xpm/x86
544endif
545ifeq ($(ARCH),x86-64)
546XPM = xpm/x64
547endif
548endif
549ifdef XPM
550ifneq ($(XPM),no)
551CFLAGS += -DFEAT_XPM_W32 -I $(XPM)/include -I $(XPM)/../include
552endif
553endif
554
555endif
556
557ifeq ($(DEBUG),yes)
558CFLAGS += -g -fstack-check
559DEBUG_SUFFIX=d
560else
561ifeq ($(OPTIMIZE), SIZE)
562CFLAGS += -Os
563else
564ifeq ($(OPTIMIZE), MAXSPEED)
565CFLAGS += -O3
566CFLAGS += -fomit-frame-pointer -freg-struct-return
567else # SPEED
568CFLAGS += -O2
569endif
570endif
571CFLAGS += -s
572endif
573
574LIB = -lkernel32 -luser32 -lgdi32 -ladvapi32 -lcomdlg32 -lcomctl32 -lversion
575GUIOBJ = $(OUTDIR)/gui.o $(OUTDIR)/gui_w32.o $(OUTDIR)/gui_beval.o $(OUTDIR)/os_w32exe.o
576OBJ = \
577 $(OUTDIR)/blowfish.o \
578 $(OUTDIR)/buffer.o \
579 $(OUTDIR)/charset.o \
580 $(OUTDIR)/crypt.o \
581 $(OUTDIR)/crypt_zip.o \
582 $(OUTDIR)/diff.o \
583 $(OUTDIR)/digraph.o \
584 $(OUTDIR)/edit.o \
585 $(OUTDIR)/eval.o \
586 $(OUTDIR)/ex_cmds.o \
587 $(OUTDIR)/ex_cmds2.o \
588 $(OUTDIR)/ex_docmd.o \
589 $(OUTDIR)/ex_eval.o \
590 $(OUTDIR)/ex_getln.o \
591 $(OUTDIR)/fileio.o \
592 $(OUTDIR)/fold.o \
593 $(OUTDIR)/getchar.o \
594 $(OUTDIR)/hardcopy.o \
595 $(OUTDIR)/hashtab.o \
596 $(OUTDIR)/main.o \
597 $(OUTDIR)/mark.o \
598 $(OUTDIR)/memfile.o \
599 $(OUTDIR)/memline.o \
600 $(OUTDIR)/menu.o \
601 $(OUTDIR)/message.o \
602 $(OUTDIR)/misc1.o \
603 $(OUTDIR)/misc2.o \
604 $(OUTDIR)/move.o \
605 $(OUTDIR)/mbyte.o \
606 $(OUTDIR)/normal.o \
607 $(OUTDIR)/ops.o \
608 $(OUTDIR)/option.o \
609 $(OUTDIR)/os_win32.o \
610 $(OUTDIR)/os_mswin.o \
611 $(OUTDIR)/winclip.o \
612 $(OUTDIR)/pathdef.o \
613 $(OUTDIR)/popupmnu.o \
614 $(OUTDIR)/quickfix.o \
615 $(OUTDIR)/regexp.o \
616 $(OUTDIR)/screen.o \
617 $(OUTDIR)/search.o \
618 $(OUTDIR)/sha256.o \
619 $(OUTDIR)/spell.o \
620 $(OUTDIR)/syntax.o \
621 $(OUTDIR)/tag.o \
622 $(OUTDIR)/term.o \
623 $(OUTDIR)/ui.o \
624 $(OUTDIR)/undo.o \
625 $(OUTDIR)/version.o \
626 $(OUTDIR)/vimrc.o \
627 $(OUTDIR)/window.o
628
629ifdef PERL
630OBJ += $(OUTDIR)/if_perl.o
631endif
632ifdef LUA
633OBJ += $(OUTDIR)/if_lua.o
634endif
635ifdef MZSCHEME
636OBJ += $(OUTDIR)/if_mzsch.o
637MZSCHEME_INCL = if_mzsch.h
638ifeq (yes,$(MZSCHEME_GENERATE_BASE))
639CFLAGS += -DINCLUDE_MZSCHEME_BASE
640MZ_EXTRA_DEP += mzscheme_base.c
641endif
642ifeq (yes,$(MZSCHEME_PRECISE_GC))
643CFLAGS += -DMZ_PRECISE_GC
644endif
645endif
646ifdef PYTHON
647OBJ += $(OUTDIR)/if_python.o
648endif
649ifdef PYTHON3
650OBJ += $(OUTDIR)/if_python3.o
651endif
652ifdef RUBY
653OBJ += $(OUTDIR)/if_ruby.o
654endif
655ifdef TCL
656OBJ += $(OUTDIR)/if_tcl.o
657endif
658ifeq ($(CSCOPE),yes)
659OBJ += $(OUTDIR)/if_cscope.o
660endif
661ifeq ($(NETBEANS),yes)
662# Only allow NETBEANS for a GUI build.
663ifeq (yes, $(GUI))
664OBJ += $(OUTDIR)/netbeans.o
665LIB += -lwsock32
666endif
667endif
668ifeq ($(DIRECTX),yes)
669# Only allow DIRECTX for a GUI build.
670ifeq (yes, $(GUI))
671OBJ += $(OUTDIR)/gui_dwrite.o
672LIB += -ld2d1 -ldwrite
673USE_STDCPLUS = yes
674endif
675endif
676ifneq ($(XPM),no)
677# Only allow XPM for a GUI build.
678ifeq (yes, $(GUI))
679OBJ += $(OUTDIR)/xpm_w32.o
680# You'll need libXpm.a from http://gnuwin32.sf.net
681LIB += -L$(XPM)/lib -lXpm
682endif
683endif
684
685
686ifdef MZSCHEME
687MZSCHEME_SUFFIX = Z
688endif
689
690ifeq ($(GUI),yes)
691TARGET := gvim$(DEBUG_SUFFIX).exe
692DEFINES += $(DEF_GUI)
693OBJ += $(GUIOBJ)
694LFLAGS += -mwindows
695OUTDIR = gobj$(DEBUG_SUFFIX)$(MZSCHEME_SUFFIX)$(ARCH)
696else
697TARGET := vim$(DEBUG_SUFFIX).exe
698OUTDIR = obj$(DEBUG_SUFFIX)$(MZSCHEME_SUFFIX)$(ARCH)
699endif
700
701ifdef GETTEXT
702ifneq (yes, $(GETTEXT))
703CFLAGS += -I$(GETTEXTINCLUDE)
704ifndef STATIC_GETTEXT
705LIB += -L$(GETTEXTLIB) -l$(INTLLIB)
706ifeq (USE_SAFE_GETTEXT_DLL, $(DYNAMIC_GETTEXT))
707OBJ+=$(SAFE_GETTEXT_DLL_OBJ)
708endif
709else
710LIB += -L$(GETTEXTLIB) -lintl
711endif
712endif
713endif
714
715ifdef PERL
716ifeq (no, $(DYNAMIC_PERL))
717LIB += -L$(PERLLIBS) -lperl$(PERL_VER)
718endif
719endif
720
721ifdef TCL
722LIB += -L$(TCL)/lib
723ifeq (yes, $(DYNAMIC_TCL))
724LIB += -ltclstub$(TCL_VER)
725else
726LIB += -ltcl$(TCL_VER)
727endif
728endif
729
730ifeq (yes, $(OLE))
731LIB += -loleaut32
732OBJ += $(OUTDIR)/if_ole.o
733USE_STDCPLUS = yes
734endif
735
736ifeq (yes, $(MBYTE))
737DEFINES += -DFEAT_MBYTE
738endif
739
740ifeq (yes, $(IME))
741DEFINES += -DFEAT_MBYTE_IME
742ifeq (yes, $(DYNAMIC_IME))
743DEFINES += -DDYNAMIC_IME
744else
745LIB += -limm32
746endif
747endif
748
749ifdef ICONV
750ifneq (yes, $(ICONV))
751LIB += -L$(ICONV)
752CFLAGS += -I$(ICONV)
753endif
754DEFINES+=-DDYNAMIC_ICONV
755endif
756
757ifeq (yes, $(USE_STDCPLUS))
758ifeq (yes, $(STATIC_STDCPLUS))
759LIB += -Wl,-Bstatic -lstdc++ -Wl,-Bdynamic
760else
761LIB += -lstdc++
762endif
763endif
764
765all: $(TARGET) vimrun.exe xxd/xxd.exe install.exe uninstal.exe GvimExt/gvimext.dll
766
767vimrun.exe: vimrun.c
768 $(CC) $(CFLAGS) -o vimrun.exe vimrun.c $(LIB)
769
770install.exe: dosinst.c
771 $(CC) $(CFLAGS) -o install.exe dosinst.c $(LIB) -lole32 -luuid
772
773uninstal.exe: uninstal.c
774 $(CC) $(CFLAGS) -o uninstal.exe uninstal.c $(LIB)
775
776$(TARGET): $(OUTDIR) $(OBJ)
777 $(CC) $(CFLAGS) $(LFLAGS) -o $@ $(OBJ) $(LIB) -lole32 -luuid $(LUA_LIB) $(MZSCHEME_LIBDIR) $(MZSCHEME_LIB) $(PYTHONLIB) $(PYTHON3LIB) $(RUBYLIB)
778
779upx: exes
780 upx gvim.exe
781 upx vim.exe
782
783mpress: exes
784 mpress gvim.exe
785 mpress vim.exe
786
787xxd/xxd.exe: xxd/xxd.c
788 $(MAKE) -C xxd -f Make_ming.mak CC='$(CC)'
789
790GvimExt/gvimext.dll: GvimExt/gvimext.cpp GvimExt/gvimext.rc GvimExt/gvimext.h
791 $(MAKE) -C GvimExt -f Make_ming.mak CROSS=$(CROSS) CROSS_COMPILE=$(CROSS_COMPILE) CXX='$(CXX)' STATIC_STDCPLUS=$(STATIC_STDCPLUS)
792
793clean:
794 -$(DEL) $(OUTDIR)$(DIRSLASH)*.o
795 -$(DEL) $(OUTDIR)$(DIRSLASH)*.res
796 -rmdir $(OUTDIR)
797 -$(DEL) *.exe
798 -$(DEL) pathdef.c
799ifdef PERL
800 -$(DEL) if_perl.c
801endif
802ifdef MZSCHEME
803 -$(DEL) mzscheme_base.c
804endif
805 $(MAKE) -C GvimExt -f Make_ming.mak clean
806 $(MAKE) -C xxd -f Make_ming.mak clean
807
808###########################################################################
809INCL = vim.h feature.h os_win32.h os_dos.h ascii.h keymap.h term.h macros.h \
810 structs.h regexp.h option.h ex_cmds.h proto.h globals.h farsi.h \
811 gui.h
812
813$(OUTDIR)/if_python.o : if_python.c if_py_both.h $(INCL)
Bram Moolenaar449538c2016-01-09 17:49:15 +0100814 $(CC) -c $(CFLAGS) $(PYTHONINC) $(PYTHON_HOME_DEF) $< -o $@
Bram Moolenaar4f7e8212014-11-05 13:53:32 +0100815
816$(OUTDIR)/if_python3.o : if_python3.c if_py_both.h $(INCL)
Bram Moolenaar449538c2016-01-09 17:49:15 +0100817 $(CC) -c $(CFLAGS) $(PYTHON3INC) $< -o $@
Bram Moolenaar4f7e8212014-11-05 13:53:32 +0100818
819$(OUTDIR)/%.o : %.c $(INCL)
820 $(CC) -c $(CFLAGS) $< -o $@
821
822$(OUTDIR)/vimrc.o: vim.rc version.h gui_w32_rc.h
823 $(WINDRES) $(WINDRES_FLAGS) $(DEFINES) \
824 --input-format=rc --output-format=coff -i vim.rc -o $@
825
826$(OUTDIR):
827 $(MKDIR) $(OUTDIR)
828
829$(OUTDIR)/ex_docmd.o: ex_docmd.c $(INCL) ex_cmds.h
830 $(CC) -c $(CFLAGS) ex_docmd.c -o $(OUTDIR)/ex_docmd.o
831
832$(OUTDIR)/ex_eval.o: ex_eval.c $(INCL) ex_cmds.h
833 $(CC) -c $(CFLAGS) ex_eval.c -o $(OUTDIR)/ex_eval.o
834
835$(OUTDIR)/gui_w32.o: gui_w32.c gui_w48.c $(INCL)
836 $(CC) -c $(CFLAGS) gui_w32.c -o $(OUTDIR)/gui_w32.o
837
838$(OUTDIR)/gui_dwrite.o: gui_dwrite.cpp $(INCL) gui_dwrite.h
839 $(CC) -c $(CFLAGS) gui_dwrite.cpp -o $(OUTDIR)/gui_dwrite.o
840
841$(OUTDIR)/if_cscope.o: if_cscope.c $(INCL) if_cscope.h
842 $(CC) -c $(CFLAGS) if_cscope.c -o $(OUTDIR)/if_cscope.o
843
844# Remove -D__IID_DEFINED__ for newer versions of the w32api
845$(OUTDIR)/if_ole.o: if_ole.cpp $(INCL)
846 $(CC) $(CFLAGS) -c -o $(OUTDIR)/if_ole.o if_ole.cpp
847
848$(OUTDIR)/if_ruby.o: if_ruby.c $(INCL)
849ifeq (16, $(RUBY))
850 $(CC) $(CFLAGS) -U_WIN32 -c -o $(OUTDIR)/if_ruby.o if_ruby.c
851endif
852
853if_perl.c: if_perl.xs typemap
854 $(XSUBPP) -prototypes -typemap \
Bram Moolenaar345326a2014-11-06 10:03:01 +0100855 $(PERLTYPEMAP) if_perl.xs > $@
Bram Moolenaar4f7e8212014-11-05 13:53:32 +0100856
857$(OUTDIR)/netbeans.o: netbeans.c $(INCL) $(NBDEBUG_INCL) $(NBDEBUG_SRC)
858 $(CC) -c $(CFLAGS) netbeans.c -o $(OUTDIR)/netbeans.o
859
860$(OUTDIR)/regexp.o: regexp.c regexp_nfa.c $(INCL)
861 $(CC) -c $(CFLAGS) regexp.c -o $(OUTDIR)/regexp.o
862
863$(OUTDIR)/if_mzsch.o: if_mzsch.c $(INCL) if_mzsch.h $(MZ_EXTRA_DEP)
864 $(CC) -c $(CFLAGS) if_mzsch.c -o $(OUTDIR)/if_mzsch.o
865
866mzscheme_base.c:
867 $(MZSCHEME)/mzc --c-mods mzscheme_base.c ++lib scheme/base
868
869pathdef.c: $(INCL)
870ifneq (sh.exe, $(SHELL))
871 @echo creating pathdef.c
872 @echo '/* pathdef.c */' > pathdef.c
873 @echo '#include "vim.h"' >> pathdef.c
874 @echo 'char_u *default_vim_dir = (char_u *)"$(VIMRCLOC)";' >> pathdef.c
875 @echo 'char_u *default_vimruntime_dir = (char_u *)"$(VIMRUNTIMEDIR)";' >> pathdef.c
876 @echo 'char_u *all_cflags = (char_u *)"$(CC) $(CFLAGS)";' >> pathdef.c
877 @echo 'char_u *all_lflags = (char_u *)"$(CC) $(CFLAGS) $(LFLAGS) -o $(TARGET) $(LIB) -lole32 -luuid $(LUA_LIB) $(MZSCHEME_LIBDIR) $(MZSCHEME_LIB) $(PYTHONLIB) $(PYTHON3LIB) $(RUBYLIB)";' >> pathdef.c
878 @echo 'char_u *compiled_user = (char_u *)"$(USERNAME)";' >> pathdef.c
879 @echo 'char_u *compiled_sys = (char_u *)"$(USERDOMAIN)";' >> pathdef.c
880else
881 @echo creating pathdef.c
882 @echo /* pathdef.c */ > pathdef.c
883 @echo #include "vim.h" >> pathdef.c
884 @echo char_u *default_vim_dir = (char_u *)"$(VIMRCLOC)"; >> pathdef.c
885 @echo char_u *default_vimruntime_dir = (char_u *)"$(VIMRUNTIMEDIR)"; >> pathdef.c
886 @echo char_u *all_cflags = (char_u *)"$(CC) $(CFLAGS)"; >> pathdef.c
887 @echo char_u *all_lflags = (char_u *)"$(CC) $(CFLAGS) $(LFLAGS) -o $(TARGET) $(LIB) -lole32 -luuid $(LUA_LIB) $(MZSCHEME_LIBDIR) $(MZSCHEME_LIB) $(PYTHONLIB) $(PYTHON3LIB) $(RUBYLIB)"; >> pathdef.c
888 @echo char_u *compiled_user = (char_u *)"$(USERNAME)"; >> pathdef.c
889 @echo char_u *compiled_sys = (char_u *)"$(USERDOMAIN)"; >> pathdef.c
890endif