1 # 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.
7 # Tested on Win32 NT 4 and Win95.
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
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
17 # "make upx" makes *compressed* versions of the GUI and console EXEs, using the
18 # excellent UPX compressor:
19 # http://upx.sourceforge.net/
21 # Maintained by Ron Aaron <ronaharon@yahoo.com>
24 #>>>>> choose options:
25 # set to yes for a debug build
27 # set to SIZE for size, SPEED for speed, MAXSPEED for maximum optimization
29 # set to yes to make gvim, no for vim
31 # FEATURES=[TINY | SMALL | NORMAL | BIG | HUGE]
32 # set to TINY to make minimal version (few features)
34 # set to one of i386, i486, i586, i686 as the minimum target processor
36 # set to yes to cross-compile from unix; no=native Windows
38 # set to path to iconv.h and libiconv.a to enable using 'iconv.dll'
42 # set to yes to include multibyte support
44 # set to yes to include IME support
47 # set to yes to enable writing a postscript file with :hardcopy
49 # set to yes to enable OLE support
51 # Set the default $(WINVER) to make it work with pre-Win2k
53 # Set to yes to enable Cscope support
55 # Set to yes to enable Netbeans support
59 # If the user doesn't want gettext, undefine it.
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
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
74 SAFE_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
79 INTLPATH
=$(GETTEXT
)/lib
/mingw32
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
91 # uncomment 'PERL' if you want a perl-enabled version
100 # on Linux, for cross-compile, it's here:
101 #PERLLIB=/home/ron/ActivePerl/lib
104 PERLLIBS
=$(PERLLIB
)/Core
107 # uncomment 'MZSCHEME' if you want a MzScheme-enabled version
110 ifndef DYNAMIC_MZSCHEME
118 ifeq (no
,$(DYNAMIC_MZSCHEME
))
119 MZSCHEME_LIB
= -lmzsch
$(MZSCHEME_VER
) -lmzgc
$(MZSCHEME_VER
)
120 # the modern MinGW can dynamically link to dlls directly.
121 # point MZSCHEME_DLLS to where you put libmzschXXXXXXX.dll and libgcXXXXXXX.dll
123 MZSCHEME_DLLS
=$(MZSCHEME
)
125 MZSCHEME_LIBDIR
=-L
$(MZSCHEME_DLLS
)
130 # Python support -- works with the ActiveState python 2.0 release (and others
133 # uncomment 'PYTHON' to make python-enabled version
134 # Put the path to the python distro here. If cross compiling from Linux, you
135 # will also need to convert the header files to unix instead of dos format:
136 # for fil in *.h ; do vim -e -c 'set ff=unix|w|q' $fil
137 # and also, you will need to make a mingw32 'libpython20.a' to link with:
139 # pexports python20.dll > python20.def
140 # dlltool -d python20.def -l libpython20.a
141 # on my Linux box, I put the Python stuff here:
142 #PYTHON=/home/ron/ActivePython-2.0.0-202/src/Core
143 # on my NT box, it's here:
147 ifndef DYNAMIC_PYTHON
155 ifeq (no
,$(DYNAMIC_PYTHON
))
156 PYTHONLIB
=-L
$(PYTHON
)/libs
-lpython
$(PYTHON_VER
)
158 # my include files are in 'win32inc' on Linux, and 'include' in the standard
159 # NT distro (ActiveState)
161 PYTHONINC
=-I
$(PYTHON
)/include
163 PYTHONINC
=-I
$(PYTHON
)/win32inc
168 # TCL=[Path to TCL directory]
169 # DYNAMIC_TCL=yes (to load the TCL DLL dynamically)
170 # TCL_VER=[TCL version, eg 83, 84] (default is 83)
179 TCLINC
+= -I
$(TCL
)/include
184 # RUBY=[Path to Ruby directory]
185 # DYNAMIC_RUBY=yes (to load the Ruby DLL dynamically)
186 # RUBY_VER=[Ruby version, eg 16, 17] (default is 16)
187 # RUBY_VER_LONG=[Ruby version, eg 1.6, 1.7] (default is 1.6)
188 # You must set RUBY_VER_LONG when change RUBY_VER.
202 ifeq ($(RUBY_VER
), 16)
204 RUBY_PLATFORM
= i586-mswin32
206 ifndef RUBY_INSTALL_NAME
207 RUBY_INSTALL_NAME
= mswin32-ruby
$(RUBY_VER
)
211 RUBY_PLATFORM
= i386-mswin32
213 ifndef RUBY_INSTALL_NAME
214 RUBY_INSTALL_NAME
= msvcrt-ruby
$(RUBY_VER
)
218 RUBYINC
=-I
$(RUBY
)/lib
/ruby
/$(RUBY_VER_LONG
)/$(RUBY_PLATFORM
)
219 ifeq (no
, $(DYNAMIC_RUBY
))
220 RUBYLIB
= -L
$(RUBY
)/lib
-l
$(RUBY_INSTALL_NAME
)
225 # See feature.h for a list of options.
226 # Any other defines can be included here.
227 DEF_GUI
=-DFEAT_GUI_W32
-DFEAT_CLIPBOARD
228 DEFINES
=-DWIN32
-DWINVER
=$(WINVER
) -D_WIN32_WINNT
=$(WINVER
) \
229 -DHAVE_PATHDEF
-DFEAT_
$(FEATURES
)
232 CC
= i586-pc-mingw32msvc-gcc
235 WINDRES
= i586-pc-mingw32msvc-windres
237 # normal (Windows) compilation:
239 ifneq (sh.exe
, $(SHELL
))
251 #>>>>> end of choices
252 ###########################################################################
254 CFLAGS
= -Iproto
$(DEFINES
) -pipe
-w
-march
=$(ARCH
) -Wall
257 DEFINES
+= -DHAVE_GETTEXT
-DHAVE_LOCALE_H
258 GETTEXTINCLUDE
= $(GETTEXT
)/include
259 GETTEXTLIB
= $(INTLPATH
)
260 ifeq (yes
, $(GETTEXT
))
261 DEFINES
+= -DDYNAMIC_GETTEXT
263 ifdef DYNAMIC_GETTEXT
264 DEFINES
+= -D
$(DYNAMIC_GETTEXT
)
265 ifdef GETTEXT_DYNAMIC
266 DEFINES
+= -DGETTEXT_DYNAMIC
-DGETTEXT_DLL
=\"$(GETTEXT_DYNAMIC
)\"
273 CFLAGS
+= -I
$(PERLLIBS
) -DFEAT_PERL
-L
$(PERLLIBS
)
274 ifeq (yes
, $(DYNAMIC_PERL
))
275 CFLAGS
+= -DDYNAMIC_PERL
-DDYNAMIC_PERL_DLL
=\"perl
$(PERL_VER
).dll
\"
280 CFLAGS
+= -I
$(MZSCHEME
)/include -DFEAT_MZSCHEME
-DMZSCHEME_COLLECTS
=\"$(MZSCHEME
)/collects
\"
281 ifeq (yes
, $(DYNAMIC_MZSCHEME
))
282 CFLAGS
+= -DDYNAMIC_MZSCHEME
-DDYNAMIC_MZSCH_DLL
=\"libmzsch
$(MZSCHEME_VER
).dll
\" -DDYNAMIC_MZGC_DLL
=\"libmzgc
$(MZSCHEME_VER
).dll
\"
287 CFLAGS
+= -DFEAT_RUBY
$(RUBYINC
)
288 ifeq (yes
, $(DYNAMIC_RUBY
))
289 CFLAGS
+= -DDYNAMIC_RUBY
-DDYNAMIC_RUBY_DLL
=\"$(RUBY_INSTALL_NAME
).dll
\"
290 CFLAGS
+= -DDYNAMIC_RUBY_VER
=$(RUBY_VER
)
295 CFLAGS
+= -DFEAT_PYTHON
$(PYTHONINC
)
296 ifeq (yes
, $(DYNAMIC_PYTHON
))
297 CFLAGS
+= -DDYNAMIC_PYTHON
-DDYNAMIC_PYTHON_DLL
=\"python
$(PYTHON_VER
).dll
\"
302 CFLAGS
+= -DFEAT_TCL
$(TCLINC
)
303 ifeq (yes
, $(DYNAMIC_TCL
))
304 CFLAGS
+= -DDYNAMIC_TCL
-DDYNAMIC_TCL_DLL
=\"tcl
$(TCL_VER
).dll
\"
308 ifeq ($(POSTSCRIPT
),yes
)
313 DEFINES
+= -DFEAT_OLE
317 DEFINES
+= -DFEAT_CSCOPE
320 ifeq ($(NETBEANS
),yes
)
321 # Only allow NETBEANS for a GUI build.
323 DEFINES
+= -DFEAT_NETBEANS_INTG
325 ifeq ($(NBDEBUG
), yes
)
327 NBDEBUG_INCL
= nbdebug.h
328 NBDEBUG_SRC
= nbdebug.c
334 # Only allow XPM for a GUI build.
336 CFLAGS
+= -DFEAT_XPM_W32
-I
$(XPM
)/include
341 CFLAGS
+= -g
-fstack-check
344 ifeq ($(OPTIMIZE
), SIZE
)
347 ifeq ($(OPTIMIZE
), MAXSPEED
)
349 CFLAGS
+= -fomit-frame-pointer
-freg-struct-return
357 LIB
= -lkernel32
-luser32
-lgdi32
-ladvapi32
-lcomdlg32
-lcomctl32
-lversion
358 GUIOBJ
= $(OUTDIR
)/gui.o
$(OUTDIR
)/gui_w32.o
$(OUTDIR
)/gui_beval.o
$(OUTDIR
)/os_w32exe.o
361 $(OUTDIR
)/charset.o \
363 $(OUTDIR
)/digraph.o \
366 $(OUTDIR
)/ex_cmds.o \
367 $(OUTDIR
)/ex_cmds2.o \
368 $(OUTDIR
)/ex_docmd.o \
369 $(OUTDIR
)/ex_eval.o \
370 $(OUTDIR
)/ex_getln.o \
373 $(OUTDIR
)/getchar.o \
374 $(OUTDIR
)/hardcopy.o \
375 $(OUTDIR
)/hashtab.o \
378 $(OUTDIR
)/memfile.o \
379 $(OUTDIR
)/memline.o \
381 $(OUTDIR
)/message.o \
389 $(OUTDIR
)/os_win32.o \
390 $(OUTDIR
)/os_mswin.o \
391 $(OUTDIR
)/pathdef.o \
392 $(OUTDIR
)/popupmnu.o \
393 $(OUTDIR
)/quickfix.o \
403 $(OUTDIR
)/version.o \
408 OBJ
+= $(OUTDIR
)/if_perl.o
411 OBJ
+= $(OUTDIR
)/if_mzsch.o
412 MZSCHEME_INCL
= if_mzsch.h
415 OBJ
+= $(OUTDIR
)/if_python.o
418 OBJ
+= $(OUTDIR
)/if_ruby.o
421 OBJ
+= $(OUTDIR
)/if_tcl.o
424 OBJ
+= $(OUTDIR
)/if_cscope.o
426 ifeq ($(NETBEANS
),yes
)
427 # Only allow NETBEANS for a GUI build.
429 OBJ
+= $(OUTDIR
)/netbeans.o
434 # Only allow XPM for a GUI build.
436 OBJ
+= $(OUTDIR
)/xpm_w32.o
437 # You'll need libXpm.a from http://gnuwin32.sf.net
438 LIB
+= -L
$(XPM
)/lib
-lXpm
448 TARGET
:= gvim
$(DEBUG_SUFFIX
).exe
449 DEFINES
+= $(DEF_GUI
)
452 OUTDIR
= gobj
$(DEBUG_SUFFIX
)$(MZSCHEME_SUFFIX
)
454 TARGET
:= vim
$(DEBUG_SUFFIX
).exe
455 OUTDIR
= obj
$(DEBUG_SUFFIX
)$(MZSCHEME_SUFFIX
)
459 ifneq (yes
, $(GETTEXT
))
460 CFLAGS
+= -I
$(GETTEXTINCLUDE
)
461 ifndef STATIC_GETTEXT
462 LIB
+= -L
$(GETTEXTLIB
) -l
$(INTLLIB
)
463 ifeq (USE_SAFE_GETTEXT_DLL
, $(DYNAMIC_GETTEXT
))
464 OBJ
+=$(SAFE_GETTEXT_DLL_OBJ
)
467 LIB
+= -L
$(GETTEXTLIB
) -lintl
473 ifeq (no
, $(DYNAMIC_PERL
))
474 LIB
+= -lperl
$(PERL_VER
)
480 ifeq (yes
, $(DYNAMIC_TCL
))
481 LIB
+= -ltclstub
$(TCL_VER
)
483 LIB
+= -ltcl
$(TCL_VER
)
488 LIB
+= -loleaut32
-lstdc
++
489 OBJ
+= $(OUTDIR
)/if_ole.o
493 DEFINES
+= -DFEAT_MBYTE
497 DEFINES
+= -DFEAT_MBYTE_IME
498 ifeq (yes
, $(DYNAMIC_IME
))
499 DEFINES
+= -DDYNAMIC_IME
506 ifneq (yes
, $(ICONV
))
510 DEFINES
+=-DDYNAMIC_ICONV
513 all: $(TARGET
) vimrun.exe xxd
/xxd.exe
install.exe uninstal.exe GvimExt
/gvimext.dll
516 $(CC
) $(CFLAGS
) -o vimrun.exe vimrun.c
$(LIB
)
518 install.exe
: dosinst.c
519 $(CC
) $(CFLAGS
) -o
install.exe dosinst.c
$(LIB
) -lole32
-luuid
521 uninstal.exe
: uninstal.c
522 $(CC
) $(CFLAGS
) -o uninstal.exe uninstal.c
$(LIB
)
524 $(TARGET
): $(OUTDIR
) $(OBJ
)
525 $(CC
) $(CFLAGS
) $(LFLAGS
) -o
$@
$(OBJ
) $(LIB
) -lole32
-luuid
$(MZSCHEME_LIBDIR
) $(MZSCHEME_LIB
) $(PYTHONLIB
) $(RUBYLIB
)
531 xxd
/xxd.exe
: xxd
/xxd.c
532 $(MAKE
) -C xxd
-f Make_cyg.mak
534 GvimExt
/gvimext.dll
: GvimExt
/gvimext.
cpp GvimExt
/gvimext.rc GvimExt
/gvimext.h
535 $(MAKE
) -C GvimExt
-f Make_ming.mak
538 -$(DEL
) $(OUTDIR
)$(DIRSLASH
)*.o
539 -$(DEL
) $(OUTDIR
)$(DIRSLASH
)*.res
546 $(MAKE
) -C GvimExt
-f Make_ming.mak
clean
547 $(MAKE
) -C xxd
-f Make_cyg.mak
clean
549 ###########################################################################
550 INCL
= vim.h feature.h os_win32.h os_dos.h ascii.h keymap.h term.h macros.h \
551 structs.h regexp.h option.h ex_cmds.h proto.h globals.h farsi.h \
554 $(OUTDIR
)/%.o
: %.c
$(INCL
)
555 $(CC
) -c
$(CFLAGS
) $< -o
$@
557 $(OUTDIR
)/vimres.res
: vim.rc version.h gui_w32_rc.h
558 $(WINDRES
) $(DEFINES
) vim.rc
$(OUTDIR
)/vimres.res
560 $(OUTDIR
)/vimrc.o
: $(OUTDIR
)/vimres.res
561 $(WINDRES
) $(OUTDIR
)/vimres.res
$(OUTDIR
)/vimrc.o
566 $(OUTDIR
)/ex_docmd.o
: ex_docmd.c
$(INCL
) ex_cmds.h
567 $(CC
) -c
$(CFLAGS
) ex_docmd.c
-o
$(OUTDIR
)/ex_docmd.o
569 $(OUTDIR
)/ex_eval.o
: ex_eval.c
$(INCL
) ex_cmds.h
570 $(CC
) -c
$(CFLAGS
) ex_eval.c
-o
$(OUTDIR
)/ex_eval.o
572 $(OUTDIR
)/if_cscope.o
: if_cscope.c
$(INCL
) if_cscope.h
573 $(CC
) -c
$(CFLAGS
) if_cscope.c
-o
$(OUTDIR
)/if_cscope.o
575 # Remove -D__IID_DEFINED__ for newer versions of the w32api
576 $(OUTDIR
)/if_ole.o
: if_ole.
cpp $(INCL
)
577 $(CC
) $(CFLAGS
) -c
-o
$(OUTDIR
)/if_ole.o if_ole.
cpp
579 $(OUTDIR
)/if_ruby.o
: if_ruby.c
$(INCL
)
581 $(CC
) $(CFLAGS
) -U_WIN32
-c
-o
$(OUTDIR
)/if_ruby.o if_ruby.c
584 if_perl.c
: if_perl.xs typemap
585 perl
$(PERLLIB
)/ExtUtils
/xsubpp
-prototypes
-typemap \
586 $(PERLLIB
)/ExtUtils
/typemap if_perl.xs
> $@
588 $(OUTDIR
)/netbeans.o
: netbeans.c
$(INCL
) $(NBDEBUG_INCL
) $(NBDEBUG_SRC
)
589 $(CC
) -c
$(CFLAGS
) netbeans.c
-o
$(OUTDIR
)/netbeans.o
592 ifneq (sh.exe
, $(SHELL
))
593 @echo creating pathdef.c
594 @echo
'/* pathdef.c */' > pathdef.c
595 @echo
'#include "vim.h"' >> pathdef.c
596 @echo
'char_u *default_vim_dir = (char_u *)"$(VIMRCLOC)";' >> pathdef.c
597 @echo
'char_u *default_vimruntime_dir = (char_u *)"$(VIMRUNTIMEDIR)";' >> pathdef.c
598 @echo
'char_u *all_cflags = (char_u *)"$(CC) $(CFLAGS)";' >> pathdef.c
599 @echo
'char_u *all_lflags = (char_u *)"$(CC) $(CFLAGS) $(LFLAGS) -o $(TARGET) $(LIB) -lole32 -luuid $(MZSCHEME_LIBDIR) $(MZSCHEME_LIB) $(PYTHONLIB) $(RUBYLIB)";' >> pathdef.c
600 @echo
'char_u *compiled_user = (char_u *)"$(USERNAME)";' >> pathdef.c
601 @echo
'char_u *compiled_sys = (char_u *)"$(USERDOMAIN)";' >> pathdef.c
603 @echo creating pathdef.c
604 @echo
/* pathdef.c
*/ > pathdef.c
605 @echo
#include "vim.h" >> pathdef.c
606 @echo char_u
*default_vim_dir
= (char_u
*)"$(VIMRCLOC)"; >> pathdef.c
607 @echo char_u
*default_vimruntime_dir
= (char_u
*)"$(VIMRUNTIMEDIR)"; >> pathdef.c
608 @echo char_u
*all_cflags = (char_u
*)"$(CC) $(CFLAGS)"; >> pathdef.c
609 @echo char_u
*all_lflags
= (char_u
*)"$(CC) $(CFLAGS) $(LFLAGS) -o $(TARGET) $(LIB) -lole32 -luuid $(MZSCHEME_LIBDIR) $(MZSCHEME_LIB) $(PYTHONLIB) $(RUBYLIB)"; >> pathdef.c
610 @echo char_u
*compiled_user
= (char_u
*)"$(USERNAME)"; >> pathdef.c
611 @echo char_u
*compiled_sys
= (char_u
*)"$(USERDOMAIN)"; >> pathdef.c