xref: /vim-8.2.3635/src/Make_ming.mak (revision 96e7a6ee)
1#
2# Makefile for VIM on Win32, using MinGW
3#
4# Also read INSTALLpc.txt!
5#
6# The old Make_ming.mak (maintained by Ron Aaron et al.) was merged into
7# Make_cyg_ming.mak.
8# This file contains MinGW specific settings. Common settings are contained
9# in Make_cyg_ming.mak.
10#
11# Last updated by Ken Takata.
12# Last Change: 2014 Oct 21
13
14
15# uncomment 'PERL' if you want a perl-enabled version
16#PERL=c:/perl
17
18# uncomment 'LUA' if you want a Lua-enabled version
19#LUA=c:/lua
20
21# uncomment 'MZSCHEME' if you want a MzScheme-enabled version
22#MZSCHEME=d:/plt
23
24# uncomment 'PYTHON' if you want a python-enabled version
25# Put the path to the python distro here.  If cross compiling from Linux, you
26# will also need to convert the header files to unix instead of dos format:
27#   for fil in *.h ; do vim -e -c 'set ff=unix|w|q' $fil
28# and also, you will need to make a mingw32 'libpython20.a' to link with:
29#   cd $PYTHON/libs
30#   pexports python20.dll > python20.def
31#   dlltool -d python20.def -l libpython20.a
32# on my Linux box, I put the Python stuff here:
33#PYTHON=/home/ron/ActivePython-2.0.0-202/src/Core
34# on my NT box, it's here:
35#PYTHON=c:/python20
36
37# uncomment 'PYTHON3' if you want a python3-enabled version
38#PYTHON3=c:/python31
39
40# uncomment 'TCL' if you want a Tcl-enabled version
41#TCL=c:/tcl
42
43# uncomment 'RUBY' if you want a Ruby-enabled version
44#RUBY=c:/ruby
45
46
47# Do not change this.
48UNDER_CYGWIN = no
49include Make_cyg_ming.mak
50
51# vim: set noet sw=8 ts=8 sts=0 wm=0 tw=0:
52