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 ifndef MZSCHEME_PRECISE_GC
119 MZSCHEME_PRECISE_GC
=no
122 # for version 4.x we need to generate byte-code for Scheme base
123 ifndef MZSCHEME_GENERATE_BASE
124 MZSCHEME_GENERATE_BASE
=no
127 ifeq (no
,$(DYNAMIC_MZSCHEME
))
128 ifeq (yes
,$(MZSCHEME_PRECISE_GC
))
129 MZSCHEME_LIB
=-lmzsch
$(MZSCHEME_VER
)
131 MZSCHEME_LIB
= -lmzsch
$(MZSCHEME_VER
) -lmzgc
$(MZSCHEME_VER
)
133 # the modern MinGW can dynamically link to dlls directly.
134 # point MZSCHEME_DLLS to where you put libmzschXXXXXXX.dll and libgcXXXXXXX.dll
136 MZSCHEME_DLLS
=$(MZSCHEME
)
138 MZSCHEME_LIBDIR
=-L
$(MZSCHEME_DLLS
) -L
$(MZSCHEME_DLLS
)\lib
143 # Python support -- works with the ActiveState python 2.0 release (and others
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:
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:
160 ifndef DYNAMIC_PYTHON
168 ifeq (no
,$(DYNAMIC_PYTHON
))
169 PYTHONLIB
=-L
$(PYTHON
)/libs
-lpython
$(PYTHON_VER
)
171 # my include files are in 'win32inc' on Linux, and 'include' in the standard
172 # NT distro (ActiveState)
174 PYTHONINC
=-I
$(PYTHON
)/include
176 PYTHONINC
=-I
$(PYTHON
)/win32inc
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)
192 TCLINC
+= -I
$(TCL
)/include
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.
215 ifeq ($(RUBY_VER
), 16)
217 RUBY_PLATFORM
= i586-mswin32
219 ifndef RUBY_INSTALL_NAME
220 RUBY_INSTALL_NAME
= mswin32-ruby
$(RUBY_VER
)
224 RUBY_PLATFORM
= i386-mswin32
226 ifndef RUBY_INSTALL_NAME
227 RUBY_INSTALL_NAME
= msvcrt-ruby
$(RUBY_VER
)
231 RUBYINC
=-I
$(RUBY
)/lib
/ruby
/$(RUBY_VER_LONG
)/$(RUBY_PLATFORM
)
232 ifeq (no
, $(DYNAMIC_RUBY
))
233 RUBYLIB
= -L
$(RUBY
)/lib
-l
$(RUBY_INSTALL_NAME
)
238 # See feature.h for a list of options.
239 # Any other defines can be included here.
240 DEF_GUI
=-DFEAT_GUI_W32
-DFEAT_CLIPBOARD
241 DEFINES
=-DWIN32
-DWINVER
=$(WINVER
) -D_WIN32_WINNT
=$(WINVER
) \
242 -DHAVE_PATHDEF
-DFEAT_
$(FEATURES
)
245 CC
= i586-pc-mingw32msvc-gcc
248 WINDRES
= i586-pc-mingw32msvc-windres
250 # normal (Windows) compilation:
252 ifneq (sh.exe
, $(SHELL
))
264 #>>>>> end of choices
265 ###########################################################################
267 CFLAGS
= -Iproto
$(DEFINES
) -pipe
-w
-march
=$(ARCH
) -Wall
270 DEFINES
+= -DHAVE_GETTEXT
-DHAVE_LOCALE_H
271 GETTEXTINCLUDE
= $(GETTEXT
)/include
272 GETTEXTLIB
= $(INTLPATH
)
273 ifeq (yes
, $(GETTEXT
))
274 DEFINES
+= -DDYNAMIC_GETTEXT
276 ifdef DYNAMIC_GETTEXT
277 DEFINES
+= -D
$(DYNAMIC_GETTEXT
)
278 ifdef GETTEXT_DYNAMIC
279 DEFINES
+= -DGETTEXT_DYNAMIC
-DGETTEXT_DLL
=\"$(GETTEXT_DYNAMIC
)\"
286 CFLAGS
+= -I
$(PERLLIBS
) -DFEAT_PERL
-L
$(PERLLIBS
)
287 ifeq (yes
, $(DYNAMIC_PERL
))
288 CFLAGS
+= -DDYNAMIC_PERL
-DDYNAMIC_PERL_DLL
=\"perl
$(PERL_VER
).dll
\"
293 CFLAGS
+= -I
$(MZSCHEME
)/include -DFEAT_MZSCHEME
-DMZSCHEME_COLLECTS
=\"$(MZSCHEME
)/collects
\"
294 ifeq (yes
, $(DYNAMIC_MZSCHEME
))
295 CFLAGS
+= -DDYNAMIC_MZSCHEME
-DDYNAMIC_MZSCH_DLL
=\"libmzsch
$(MZSCHEME_VER
).dll
\" -DDYNAMIC_MZGC_DLL
=\"libmzgc
$(MZSCHEME_VER
).dll
\"
300 CFLAGS
+= -DFEAT_RUBY
$(RUBYINC
)
301 ifeq (yes
, $(DYNAMIC_RUBY
))
302 CFLAGS
+= -DDYNAMIC_RUBY
-DDYNAMIC_RUBY_DLL
=\"$(RUBY_INSTALL_NAME
).dll
\"
303 CFLAGS
+= -DDYNAMIC_RUBY_VER
=$(RUBY_VER
)
308 CFLAGS
+= -DFEAT_PYTHON
$(PYTHONINC
)
309 ifeq (yes
, $(DYNAMIC_PYTHON
))
310 CFLAGS
+= -DDYNAMIC_PYTHON
-DDYNAMIC_PYTHON_DLL
=\"python
$(PYTHON_VER
).dll
\"
315 CFLAGS
+= -DFEAT_TCL
$(TCLINC
)
316 ifeq (yes
, $(DYNAMIC_TCL
))
317 CFLAGS
+= -DDYNAMIC_TCL
-DDYNAMIC_TCL_DLL
=\"tcl
$(TCL_VER
).dll
\"
321 ifeq ($(POSTSCRIPT
),yes
)
326 DEFINES
+= -DFEAT_OLE
330 DEFINES
+= -DFEAT_CSCOPE
333 ifeq ($(NETBEANS
),yes
)
334 # Only allow NETBEANS for a GUI build.
336 DEFINES
+= -DFEAT_NETBEANS_INTG
338 ifeq ($(NBDEBUG
), yes
)
340 NBDEBUG_INCL
= nbdebug.h
341 NBDEBUG_SRC
= nbdebug.c
347 # Only allow XPM for a GUI build.
349 CFLAGS
+= -DFEAT_XPM_W32
-I
$(XPM
)/include
354 CFLAGS
+= -g
-fstack-check
357 ifeq ($(OPTIMIZE
), SIZE
)
360 ifeq ($(OPTIMIZE
), MAXSPEED
)
362 CFLAGS
+= -fomit-frame-pointer
-freg-struct-return
370 LIB
= -lkernel32
-luser32
-lgdi32
-ladvapi32
-lcomdlg32
-lcomctl32
-lversion
371 GUIOBJ
= $(OUTDIR
)/gui.o
$(OUTDIR
)/gui_w32.o
$(OUTDIR
)/gui_beval.o
$(OUTDIR
)/os_w32exe.o
374 $(OUTDIR
)/charset.o \
376 $(OUTDIR
)/digraph.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 \
386 $(OUTDIR
)/getchar.o \
387 $(OUTDIR
)/hardcopy.o \
388 $(OUTDIR
)/hashtab.o \
391 $(OUTDIR
)/memfile.o \
392 $(OUTDIR
)/memline.o \
394 $(OUTDIR
)/message.o \
402 $(OUTDIR
)/os_win32.o \
403 $(OUTDIR
)/os_mswin.o \
404 $(OUTDIR
)/pathdef.o \
405 $(OUTDIR
)/popupmnu.o \
406 $(OUTDIR
)/quickfix.o \
416 $(OUTDIR
)/version.o \
421 OBJ
+= $(OUTDIR
)/if_perl.o
424 OBJ
+= $(OUTDIR
)/if_mzsch.o
425 MZSCHEME_INCL
= if_mzsch.h
426 ifeq (yes
,$(MZSCHEME_GENERATE_BASE
))
427 CFLAGS
+= -DINCLUDE_MZSCHEME_BASE
428 MZ_EXTRA_DEP
+= mzscheme_base.c
430 ifeq (yes
,$(MZSCHEME_PRECISE_GC
))
431 CFLAGS
+= -DMZ_PRECISE_GC
435 OBJ
+= $(OUTDIR
)/if_python.o
438 OBJ
+= $(OUTDIR
)/if_ruby.o
441 OBJ
+= $(OUTDIR
)/if_tcl.o
444 OBJ
+= $(OUTDIR
)/if_cscope.o
446 ifeq ($(NETBEANS
),yes
)
447 # Only allow NETBEANS for a GUI build.
449 OBJ
+= $(OUTDIR
)/netbeans.o
454 # Only allow XPM for a GUI build.
456 OBJ
+= $(OUTDIR
)/xpm_w32.o
457 # You'll need libXpm.a from http://gnuwin32.sf.net
458 LIB
+= -L
$(XPM
)/lib
-lXpm
468 TARGET
:= gvim
$(DEBUG_SUFFIX
).exe
469 DEFINES
+= $(DEF_GUI
)
472 OUTDIR
= gobj
$(DEBUG_SUFFIX
)$(MZSCHEME_SUFFIX
)
474 TARGET
:= vim
$(DEBUG_SUFFIX
).exe
475 OUTDIR
= obj
$(DEBUG_SUFFIX
)$(MZSCHEME_SUFFIX
)
479 ifneq (yes
, $(GETTEXT
))
480 CFLAGS
+= -I
$(GETTEXTINCLUDE
)
481 ifndef STATIC_GETTEXT
482 LIB
+= -L
$(GETTEXTLIB
) -l
$(INTLLIB
)
483 ifeq (USE_SAFE_GETTEXT_DLL
, $(DYNAMIC_GETTEXT
))
484 OBJ
+=$(SAFE_GETTEXT_DLL_OBJ
)
487 LIB
+= -L
$(GETTEXTLIB
) -lintl
493 ifeq (no
, $(DYNAMIC_PERL
))
494 LIB
+= -lperl
$(PERL_VER
)
500 ifeq (yes
, $(DYNAMIC_TCL
))
501 LIB
+= -ltclstub
$(TCL_VER
)
503 LIB
+= -ltcl
$(TCL_VER
)
508 LIB
+= -loleaut32
-lstdc
++
509 OBJ
+= $(OUTDIR
)/if_ole.o
513 DEFINES
+= -DFEAT_MBYTE
517 DEFINES
+= -DFEAT_MBYTE_IME
518 ifeq (yes
, $(DYNAMIC_IME
))
519 DEFINES
+= -DDYNAMIC_IME
526 ifneq (yes
, $(ICONV
))
530 DEFINES
+=-DDYNAMIC_ICONV
533 all: $(TARGET
) vimrun.exe xxd
/xxd.exe
install.exe uninstal.exe GvimExt
/gvimext.dll
536 $(CC
) $(CFLAGS
) -o vimrun.exe vimrun.c
$(LIB
)
538 install.exe
: dosinst.c
539 $(CC
) $(CFLAGS
) -o
install.exe dosinst.c
$(LIB
) -lole32
-luuid
541 uninstal.exe
: uninstal.c
542 $(CC
) $(CFLAGS
) -o uninstal.exe uninstal.c
$(LIB
)
544 $(TARGET
): $(OUTDIR
) $(OBJ
)
545 $(CC
) $(CFLAGS
) $(LFLAGS
) -o
$@
$(OBJ
) $(LIB
) -lole32
-luuid
$(MZSCHEME_LIBDIR
) $(MZSCHEME_LIB
) $(PYTHONLIB
) $(RUBYLIB
)
551 xxd
/xxd.exe
: xxd
/xxd.c
552 $(MAKE
) -C xxd
-f Make_cyg.mak
554 GvimExt
/gvimext.dll
: GvimExt
/gvimext.
cpp GvimExt
/gvimext.rc GvimExt
/gvimext.h
555 $(MAKE
) -C GvimExt
-f Make_ming.mak
558 -$(DEL
) $(OUTDIR
)$(DIRSLASH
)*.o
559 -$(DEL
) $(OUTDIR
)$(DIRSLASH
)*.res
567 -$(DEL
) mzscheme_base.c
569 $(MAKE
) -C GvimExt
-f Make_ming.mak
clean
570 $(MAKE
) -C xxd
-f Make_cyg.mak
clean
572 ###########################################################################
573 INCL
= vim.h feature.h os_win32.h os_dos.h ascii.h keymap.h term.h macros.h \
574 structs.h regexp.h option.h ex_cmds.h proto.h globals.h farsi.h \
577 $(OUTDIR
)/%.o
: %.c
$(INCL
)
578 $(CC
) -c
$(CFLAGS
) $< -o
$@
580 $(OUTDIR
)/vimres.res
: vim.rc version.h gui_w32_rc.h
581 $(WINDRES
) $(DEFINES
) vim.rc
$(OUTDIR
)/vimres.res
583 $(OUTDIR
)/vimrc.o
: $(OUTDIR
)/vimres.res
584 $(WINDRES
) $(OUTDIR
)/vimres.res
$(OUTDIR
)/vimrc.o
589 $(OUTDIR
)/ex_docmd.o
: ex_docmd.c
$(INCL
) ex_cmds.h
590 $(CC
) -c
$(CFLAGS
) ex_docmd.c
-o
$(OUTDIR
)/ex_docmd.o
592 $(OUTDIR
)/ex_eval.o
: ex_eval.c
$(INCL
) ex_cmds.h
593 $(CC
) -c
$(CFLAGS
) ex_eval.c
-o
$(OUTDIR
)/ex_eval.o
595 $(OUTDIR
)/if_cscope.o
: if_cscope.c
$(INCL
) if_cscope.h
596 $(CC
) -c
$(CFLAGS
) if_cscope.c
-o
$(OUTDIR
)/if_cscope.o
598 # Remove -D__IID_DEFINED__ for newer versions of the w32api
599 $(OUTDIR
)/if_ole.o
: if_ole.
cpp $(INCL
)
600 $(CC
) $(CFLAGS
) -c
-o
$(OUTDIR
)/if_ole.o if_ole.
cpp
602 $(OUTDIR
)/if_ruby.o
: if_ruby.c
$(INCL
)
604 $(CC
) $(CFLAGS
) -U_WIN32
-c
-o
$(OUTDIR
)/if_ruby.o if_ruby.c
607 if_perl.c
: if_perl.xs typemap
608 perl
$(PERLLIB
)/ExtUtils
/xsubpp
-prototypes
-typemap \
609 $(PERLLIB
)/ExtUtils
/typemap if_perl.xs
> $@
611 $(OUTDIR
)/netbeans.o
: netbeans.c
$(INCL
) $(NBDEBUG_INCL
) $(NBDEBUG_SRC
)
612 $(CC
) -c
$(CFLAGS
) netbeans.c
-o
$(OUTDIR
)/netbeans.o
614 $(OUTDIR
)/if_mzsch.o
: if_mzsch.c
$(INCL
) if_mzsch.h
$(MZ_EXTRA_DEP
)
615 $(CC
) -c
$(CFLAGS
) if_mzsch.c
-o
$(OUTDIR
)/if_mzsch.o
618 $(MZSCHEME
)/mzc
--c-mods mzscheme_base.c
++lib scheme
/base
621 ifneq (sh.exe
, $(SHELL
))
622 @echo creating pathdef.c
623 @echo
'/* pathdef.c */' > pathdef.c
624 @echo
'#include "vim.h"' >> pathdef.c
625 @echo
'char_u *default_vim_dir = (char_u *)"$(VIMRCLOC)";' >> pathdef.c
626 @echo
'char_u *default_vimruntime_dir = (char_u *)"$(VIMRUNTIMEDIR)";' >> pathdef.c
627 @echo
'char_u *all_cflags = (char_u *)"$(CC) $(CFLAGS)";' >> pathdef.c
628 @echo
'char_u *all_lflags = (char_u *)"$(CC) $(CFLAGS) $(LFLAGS) -o $(TARGET) $(LIB) -lole32 -luuid $(MZSCHEME_LIBDIR) $(MZSCHEME_LIB) $(PYTHONLIB) $(RUBYLIB)";' >> pathdef.c
629 @echo
'char_u *compiled_user = (char_u *)"$(USERNAME)";' >> pathdef.c
630 @echo
'char_u *compiled_sys = (char_u *)"$(USERDOMAIN)";' >> pathdef.c
632 @echo creating pathdef.c
633 @echo
/* pathdef.c
*/ > pathdef.c
634 @echo
#include "vim.h" >> pathdef.c
635 @echo char_u
*default_vim_dir
= (char_u
*)"$(VIMRCLOC)"; >> pathdef.c
636 @echo char_u
*default_vimruntime_dir
= (char_u
*)"$(VIMRUNTIMEDIR)"; >> pathdef.c
637 @echo char_u
*all_cflags = (char_u
*)"$(CC) $(CFLAGS)"; >> pathdef.c
638 @echo char_u
*all_lflags
= (char_u
*)"$(CC) $(CFLAGS) $(LFLAGS) -o $(TARGET) $(LIB) -lole32 -luuid $(MZSCHEME_LIBDIR) $(MZSCHEME_LIB) $(PYTHONLIB) $(RUBYLIB)"; >> pathdef.c
639 @echo char_u
*compiled_user
= (char_u
*)"$(USERNAME)"; >> pathdef.c
640 @echo char_u
*compiled_sys
= (char_u
*)"$(USERDOMAIN)"; >> pathdef.c