xref: /vim-8.2.3635/src/Make_cyg.mak (revision 796cc42d)
1#
2# Makefile for VIM on Win32, using MinGW cross compiler on Cygwin
3#
4# Also read INSTALLpc.txt!
5#
6# This compiles Vim as a Windows application.  If you want Vim to run as a
7# Cygwin application use the Makefile (just like on Unix).
8#
9# The old Make_cyg.mak (maintained by Dan Sharp et al.) was merged into
10# Make_cyg_ming.mak.  Note: USEDLL option was removed.
11# This file contains Cygwin specific settings. Common settings are contained
12# in Make_cyg_ming.mak.
13#
14# Last updated by Ken Takata.
15# Last Change: 2014 Oct 21
16
17
18# uncomment 'PERL' if you want a perl-enabled version
19#PERL=/cygdrive/c/perl
20
21# uncomment 'LUA' if you want a Lua-enabled version
22#LUA=/cygdrive/c/lua
23
24# uncomment 'MZSCHEME' if you want a MzScheme-enabled version
25#MZSCHEME=/cygdrive/d/plt
26
27# uncomment 'PYTHON' if you want a python-enabled version
28#PYTHON=/cygdrive/c/python20
29
30# uncomment 'PYTHON3' if you want a python3-enabled version
31#PYTHON3=/cygdrive/c/python31
32
33# uncomment 'TCL' if you want a Tcl-enabled version
34#TCL=/cygdrive/c/tcl
35
36# uncomment 'RUBY' if you want a Ruby-enabled version
37#RUBY=/cygdribe/c/ruby
38
39
40# Use MinGW-w64 cross compiler.
41# There are two MinGW-w64 packages in Cygwin:
42#   32-bit: mingw64-i686-gcc-g++
43#   64-bit: mingw64-x86_64-gcc-g++
44# You may also need to set 'ARCH' in Make_cyg_ming.mak.
45CROSS_COMPILE = i686-w64-mingw32-
46#CROSS_COMPILE = x86_64-w64-mingw32-
47
48
49# Do not change this.
50UNDER_CYGWIN = yes
51include Make_cyg_ming.mak
52
53# vim: set noet sw=8 ts=8 sts=0 wm=0 tw=0:
54