From 071d4279d6ab81b7187b48f3a0fc61e587b6db6c Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Sun, 13 Jun 2004 20:20:40 +0000 Subject: updated for version 7.0001 --- src/Make_cyg.mak | 498 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 498 insertions(+) create mode 100644 src/Make_cyg.mak (limited to 'src/Make_cyg.mak') diff --git a/src/Make_cyg.mak b/src/Make_cyg.mak new file mode 100644 index 0000000000..e58e3d14c5 --- /dev/null +++ b/src/Make_cyg.mak @@ -0,0 +1,498 @@ +# +# Makefile for VIM on Win32, using Cygnus gcc +# Last updated by Dan Sharp. Last Change: 2004 Apr 23 +# +# This compiles Vim as a Windows application. If you want Vim to run as a +# Cygwin application use the Makefile (just like on Unix). +# +# GUI no or yes: set to yes if you want the GUI version (yes) +# PERL define to path to Perl dir to get Perl support (not defined) +# PERL_VER define to version of Perl being used (56) +# DYNAMIC_PERL no or yes: set to yes to load the Perl DLL dynamically (yes) +# PYTHON define to path to Python dir to get PYTHON support (not defined) +# PYTHON_VER define to version of Python being used (22) +# DYNAMIC_PYTHON no or yes: use yes to load the Python DLL dynamically (yes) +# TCL define to path to TCL dir to get TCL support (not defined) +# TCL_VER define to version of TCL being used (83) +# DYNAMIC_TCL no or yes: use yes to load the TCL DLL dynamically (yes) +# RUBY define to path to Ruby dir to get Ruby support (not defined) +# RUBY_VER define to version of Ruby being used (16) +# DYNAMIC_RUBY no or yes: use yes to load the Ruby DLL dynamically (yes) +# GETTEXT no or yes: set to yes for dynamic gettext support (yes) +# ICONV no or yes: set to yes for dynamic iconv support (yes) +# MBYTE no or yes: set to yes to include multibyte support (yes) +# IME no or yes: set to yes to include IME support (yes) +# DYNAMIC_IME no or yes: set to yes to load imm32.dll dynamically (yes) +# OLE no or yes: set to yes to make OLE gvim (no) +# DEBUG no or yes: set to yes if you wish a DEBUGging build (no) +# CPUNR i386 through pentium4: select -mcpu argument to compile with (i386) +# ARCH i386 through pentium4: select -march argument to compile with (i386) +# USEDLL no or yes: set to yes to use the Runtime library DLL (no) +# For USEDLL=yes the cygwin1.dll is required to run Vim. +# POSTSCRIPT no or yes: set to yes for PostScript printing (no) +# FEATURES TINY, SMALL, NORMAL, BIG or HUGE (BIG) +# WINVER Lowest Win32 version to support. (0x0400) +# CSCOPE no or yes: to include cscope interface support (yes) +# OPTIMIZE SPACE, SPEED, or MAXSPEED: set optimization level (MAXSPEED) +# NETBEANS no or yes: to include netbeans interface support (yes when GUI +# is yes) +# XPM define to path to XPM dir to get XPM image support (not defined) +#>>>>> choose options: +ifndef GUI +GUI=yes +endif + +ifndef FEATURES +FEATURES = BIG +endif + +ifndef GETTEXT +GETTEXT = yes +endif + +ifndef ICONV +ICONV = yes +endif + +ifndef MBYTE +MBYTE = yes +endif + +ifndef IME +IME = yes +endif + +ifndef CPUNR +CPUNR = i386 +endif + +ifndef ARCH +ARCH = i386 +endif + +ifndef WINVER +WINVER = 0x0400 +endif + +ifndef CSCOPE +CSCOPE = yes +endif + +ifndef NETBEANS +ifeq ($(GUI),yes) +NETBEANS = yes +endif +endif + +ifndef OPTIMIZE +OPTIMIZE = MAXSPEED +endif + +### See feature.h for a list of optionals. +### Any other defines can be included here. + +DEFINES = -DWIN32 -DHAVE_PATHDEF -DFEAT_$(FEATURES) \ + -DWINVER=$(WINVER) -D_WIN32_WINNT=$(WINVER) +INCLUDES = -mcpu=$(CPUNR) -march=$(ARCH) -Iproto + +#>>>>> name of the compiler and linker, name of lib directory +CC = gcc +RC = windres + +############################## +# DYNAMIC_PERL=yes and no both work +############################## +ifdef PERL +DEFINES += -DFEAT_PERL +INCLUDES += -I$(PERL)/lib/CORE +EXTRA_OBJS += $(OUTDIR)/if_perl.o + +ifndef DYNAMIC_PERL +DYNAMIC_PERL = yes +endif + +ifndef PERL_VER +PERL_VER = 56 +endif + +ifeq (yes, $(DYNAMIC_PERL)) +DEFINES += -DDYNAMIC_PERL -DDYNAMIC_PERL_DLL=\"perl$(PERL_VER).dll\" +else +EXTRA_LIBS += $(PERL)/lib/CORE/perl$(PERL_VER).lib +endif +endif + +############################## +# DYNAMIC_PYTHON=yes works. +# DYNAMIC_PYTHON=no does not (unresolved externals on link). +############################## +ifdef PYTHON +DEFINES += -DFEAT_PYTHON +INCLUDES += -I$(PYTHON)/include +EXTRA_OBJS += $(OUTDIR)/if_python.o + +ifndef DYNAMIC_PYTHON +DYNAMIC_PYTHON = yes +endif + +ifndef PYTHON_VER +PYTHON_VER = 22 +endif + +ifeq (yes, $(DYNAMIC_PYTHON)) +DEFINES += -DDYNAMIC_PYTHON -DDYNAMIC_PYTHON_DLL=\"python$(PYTHON_VER).dll\" +else +EXTRA_LIBS += $(PYTHON)/libs/python$(PYTHON_VER).lib +endif +endif + +############################## +# DYNAMIC_RUBY=yes works. +# DYNAMIC_RUBY=no does not (process exits). +############################## +ifdef RUBY + +ifndef RUBY_VER +RUBY_VER=16 +endif + +ifndef RUBY_VER_LONG +RUBY_VER_LONG=1.6 +endif + +ifndef DYNAMIC_RUBY +DYNAMIC_RUBY = yes +endif + +ifeq ($(RUBY_VER), 16) +ifndef RUBY_PLATFORM +RUBY_PLATFORM = i586-mswin32 +endif +ifndef RUBY_INSTALL_NAME +RUBY_INSTALL_NAME = mswin32-ruby$(RUBY_VER) +endif +else +ifndef RUBY_PLATFORM +RUBY_PLATFORM = i386-mswin32 +endif +ifndef RUBY_INSTALL_NAME +RUBY_INSTALL_NAME = msvcrt-ruby$(RUBY_VER) +endif +endif + +DEFINES += -DFEAT_RUBY +INCLUDES += -I$(RUBY)/lib/ruby/$(RUBY_VER_LONG)/$(RUBY_PLATFORM) +EXTRA_OBJS += $(OUTDIR)/if_ruby.o + +ifeq (yes, $(DYNAMIC_RUBY)) +DEFINES += -DDYNAMIC_RUBY -DDYNAMIC_RUBY_DLL=\"$(RUBY_INSTALL_NAME).dll\" +DEFINES += -DDYNAMIC_RUBY_VER=$(RUBY_VER) +else +EXTRA_LIBS += $(RUBY)/lib/$(RUBY_INSTALL_NAME).lib +endif +endif + +############################## +# DYNAMIC_TCL=yes and no both work. +############################## +ifdef TCL +DEFINES += -DFEAT_TCL +INCLUDES += -I$(TCL)/include +EXTRA_OBJS += $(OUTDIR)/if_tcl.o + +ifndef DYNAMIC_TCL +DYNAMIC_TCL = yes +endif + +ifndef TCL_VER +TCL_VER = 83 +endif + +ifeq (yes, $(DYNAMIC_TCL)) +DEFINES += -DDYNAMIC_TCL -DDYNAMIC_TCL_DLL=\"tcl$(TCL_VER).dll\" +EXTRA_LIBS += $(TCL)/lib/tclstub$(TCL_VER).lib +else +EXTRA_LIBS += $(TCL)/lib/tcl$(TCL_VER).lib +endif +endif + +############################## +ifeq (yes, $(GETTEXT)) +DEFINES += -DDYNAMIC_GETTEXT +endif + +############################## +ifeq (yes, $(ICONV)) +DEFINES += -DDYNAMIC_ICONV +endif + +############################## +ifeq (yes, $(MBYTE)) +DEFINES += -DFEAT_MBYTE +endif + +############################## +ifeq (yes, $(IME)) +DEFINES += -DFEAT_MBYTE_IME + +ifndef DYNAMIC_IME +DYNAMIC_IME = yes +endif + +ifeq (yes, $(DYNAMIC_IME)) +DEFINES += -DDYNAMIC_IME +else +EXTRA_LIBS += -limm32 +endif +endif + +############################## +ifeq (yes, $(DEBUG)) +DEFINES += -DDEBUG +INCLUDES += -g -fstack-check +DEBUG_SUFFIX = d +else + +ifeq ($(OPTIMIZE), SIZE) +OPTFLAG = -Os +else +ifeq ($(OPTIMIZE), MAXSPEED) +OPTFLAG = -O3 -fomit-frame-pointer -freg-struct-return -malign-double +else +OPTFLAG = -O2 +endif +endif + +# A bug in the GCC <= 3.2 optimizer can cause a crash. The +# following option removes the problem optimization. +OPTFLAG += -fno-strength-reduce + +INCLUDES += -s + +endif + +############################## +# USEDLL=yes will build a Cygwin32 executable that relies on cygwin1.dll. +# USEDLL=no will build a Mingw32 executable with no extra dll dependencies. +############################## +ifeq (yes, $(USEDLL)) +DEFINES += -D_MAX_PATH=256 -D__CYGWIN__ +else +INCLUDES += -mno-cygwin +endif + +############################## +ifeq (yes, $(POSTSCRIPT)) +DEFINES += -DMSWINPS +endif + +############################## +ifeq (yes, $(CSCOPE)) +DEFINES += -DFEAT_CSCOPE +EXTRA_OBJS += $(OUTDIR)/if_cscope.o +endif + +############################## +ifeq (yes, $(NETBEANS)) +DEFINES += -DFEAT_NETBEANS_INTG +EXTRA_OBJS += $(OUTDIR)/netbeans.o $(OUTDIR)/gui_beval.o +EXTRA_LIBS += -lwsock32 + +ifeq (yes, $(DEBUG)) +DEFINES += -DNBDEBUG +NBDEBUG_DEP = nbdebug.h nbdebug.c +endif + +endif + +############################## +ifdef XPM +DEFINES += -DFEAT_XPM_W32 +INCLUDES += -I$(XPM)/include +EXTRA_OBJS += $(OUTDIR)/xpm_w32.o +EXTRA_LIBS += -L$(XPM)/lib -lXpm +endif + +############################## +ifeq (yes, $(OLE)) +DEFINES += -DFEAT_OLE +EXTRA_OBJS += $(OUTDIR)/if_ole.o +EXTRA_LIBS += -loleaut32 -lstdc++ +endif + +############################## +ifeq ($(GUI),yes) +EXE = gvim$(DEBUG_SUFFIX).exe +OUTDIR = gobj$(DEBUG_SUFFIX) +DEFINES += -DFEAT_GUI_W32 -DFEAT_CLIPBOARD +EXTRA_OBJS += $(OUTDIR)/gui.o $(OUTDIR)/gui_w32.o $(OUTDIR)/os_w32exe.o +EXTRA_LIBS += -mwindows -lcomctl32 +else +EXE = vim$(DEBUG_SUFFIX).exe +OUTDIR = obj$(DEBUG_SUFFIX) +LIBS += -luser32 -lgdi32 -lcomdlg32 +endif + +############################## +ifneq (sh.exe, $(SHELL)) +DEL = rm +DIRSLASH = / +else +DEL = del +DIRSLASH = \\ +endif + +#>>>>> end of choices +########################################################################### + +INCL = vim.h globals.h option.h keymap.h macros.h ascii.h term.h os_win32.h \ + structs.h version.h + +CFLAGS = $(OPTFLAG) $(DEFINES) $(INCLUDES) + +RCFLAGS = -O coff $(DEFINES) + +OBJ = \ + $(OUTDIR)/buffer.o \ + $(OUTDIR)/charset.o \ + $(OUTDIR)/diff.o \ + $(OUTDIR)/digraph.o \ + $(OUTDIR)/edit.o \ + $(OUTDIR)/eval.o \ + $(OUTDIR)/ex_cmds.o \ + $(OUTDIR)/ex_cmds2.o \ + $(OUTDIR)/ex_docmd.o \ + $(OUTDIR)/ex_eval.o \ + $(OUTDIR)/ex_getln.o \ + $(OUTDIR)/fileio.o \ + $(OUTDIR)/fold.o \ + $(OUTDIR)/getchar.o \ + $(OUTDIR)/main.o \ + $(OUTDIR)/mark.o \ + $(OUTDIR)/memfile.o \ + $(OUTDIR)/memline.o \ + $(OUTDIR)/menu.o \ + $(OUTDIR)/message.o \ + $(OUTDIR)/misc1.o \ + $(OUTDIR)/misc2.o \ + $(OUTDIR)/move.o \ + $(OUTDIR)/mbyte.o \ + $(OUTDIR)/normal.o \ + $(OUTDIR)/ops.o \ + $(OUTDIR)/option.o \ + $(OUTDIR)/os_win32.o \ + $(OUTDIR)/os_mswin.o \ + $(OUTDIR)/pathdef.o \ + $(OUTDIR)/quickfix.o \ + $(OUTDIR)/regexp.o \ + $(OUTDIR)/screen.o \ + $(OUTDIR)/search.o \ + $(OUTDIR)/syntax.o \ + $(OUTDIR)/tag.o \ + $(OUTDIR)/term.o \ + $(OUTDIR)/ui.o \ + $(OUTDIR)/undo.o \ + $(OUTDIR)/version.o \ + $(OUTDIR)/vimrc.o \ + $(OUTDIR)/window.o \ + $(EXTRA_OBJS) + +all: $(EXE) xxd/xxd.exe vimrun.exe install.exe uninstal.exe GvimExt/gvimext.dll + +# According to the Cygwin doc 1.2 FAQ, kernel32 should not be specified for +# linking unless calling ld directly. +# See /usr/doc/cygwin-doc-1.2/html/faq_toc.html#TOC93 for more information. +$(EXE): $(OUTDIR) $(OBJ) + $(CC) $(CFLAGS) -o $(EXE) $(OBJ) $(LIBS) -luuid -lole32 $(EXTRA_LIBS) + +xxd/xxd.exe: xxd/xxd.c + $(MAKE) -C xxd -f Make_cyg.mak USEDLL=$(USEDLL) + +GvimExt/gvimext.dll: GvimExt/gvimext.cpp GvimExt/gvimext.rc GvimExt/gvimext.h + $(MAKE) -C GvimExt -f Make_ming.mak + +vimrun.exe: vimrun.c + $(CC) $(CFLAGS) -o vimrun.exe vimrun.c $(LIBS) + +install.exe: dosinst.c + $(CC) $(CFLAGS) -o install.exe dosinst.c $(LIBS) -luuid -lole32 + +uninstal.exe: uninstal.c + $(CC) $(CFLAGS) -o uninstal.exe uninstal.c $(LIBS) + +$(OUTDIR): + mkdir $(OUTDIR) + +tags: + command /c ctags *.c $(INCL) + +clean: + -$(DEL) $(OUTDIR)$(DIRSLASH)*.o + -rmdir $(OUTDIR) + -$(DEL) *.exe +ifdef PERL + -$(DEL) if_perl.c +endif + -$(DEL) pathdef.c + $(MAKE) -C xxd -f Make_cyg.mak clean + $(MAKE) -C GvimExt -f Make_ming.mak clean + +########################################################################### + +$(OUTDIR)/%.o : %.c $(INCL) + $(CC) -c $(CFLAGS) $< -o $@ + +$(OUTDIR)/ex_docmd.o: ex_docmd.c $(INCL) ex_cmds.h + $(CC) -c $(CFLAGS) ex_docmd.c -o $(OUTDIR)/ex_docmd.o + +$(OUTDIR)/ex_eval.o: ex_eval.c $(INCL) ex_cmds.h + $(CC) -c $(CFLAGS) ex_eval.c -o $(OUTDIR)/ex_eval.o + +$(OUTDIR)/if_cscope.o: if_cscope.c $(INCL) if_cscope.h + $(CC) -c $(CFLAGS) if_cscope.c -o $(OUTDIR)/if_cscope.o + +$(OUTDIR)/if_ole.o: if_ole.cpp $(INCL) + $(CC) -c $(CFLAGS) -D__IID_DEFINED__ if_ole.cpp -o $(OUTDIR)/if_ole.o + +if_perl.c: if_perl.xs typemap + perl $(PERL)/lib/ExtUtils/xsubpp -prototypes -typemap \ + $(PERL)/lib/ExtUtils/typemap if_perl.xs > $@ + +$(OUTDIR)/if_perl.o: if_perl.c $(INCL) +ifeq (yes, $(USEDLL)) + $(CC) -c $(CFLAGS) -I/usr/include/mingw -D__MINGW32__ if_perl.c -o $(OUTDIR)/if_perl.o +endif + +$(OUTDIR)/if_ruby.o: if_ruby.c $(INCL) +ifeq (16, $(RUBY_VER)) + $(CC) -c $(CFLAGS) -U_WIN32 if_ruby.c -o $(OUTDIR)/if_ruby.o +endif + +$(OUTDIR)/netbeans.o: netbeans.c $(INCL) $(NBDEBUG_DEP) + $(CC) -c $(CFLAGS) netbeans.c -o $(OUTDIR)/netbeans.o + +$(OUTDIR)/vimrc.o: vim.rc version.h gui_w32_rc.h + $(RC) $(RCFLAGS) vim.rc -o $(OUTDIR)/vimrc.o + +pathdef.c: $(INCL) +ifneq (sh.exe, $(SHELL)) + @echo creating pathdef.c + @echo '/* pathdef.c */' > pathdef.c + @echo '#include "vim.h"' >> pathdef.c + @echo 'char_u *default_vim_dir = (char_u *)"$(VIMRCLOC)";' >> pathdef.c + @echo 'char_u *default_vimruntime_dir = (char_u *)"$(VIMRUNTIMEDIR)";' >> pathdef.c + @echo 'char_u *all_cflags = (char_u *)"$(CC) $(CFLAGS)";' >> pathdef.c + @echo 'char_u *all_lflags = (char_u *)"$(CC) -s -o $(EXE) $(LIBS) -luuid -lole32 $(EXTRA_LIBS)";' >> pathdef.c + @echo 'char_u *compiled_user = (char_u *)"$(USERNAME)";' >> pathdef.c + @echo 'char_u *compiled_sys = (char_u *)"$(USERDOMAIN)";' >> pathdef.c +else + @echo creating pathdef.c + @echo /* pathdef.c */ > pathdef.c + @echo #include "vim.h" >> pathdef.c + @echo char_u *default_vim_dir = (char_u *)"$(VIMRCLOC)"; >> pathdef.c + @echo char_u *default_vimruntime_dir = (char_u *)"$(VIMRUNTIMEDIR)"; >> pathdef.c + @echo char_u *all_cflags = (char_u *)"$(CC) $(CFLAGS)"; >> pathdef.c + @echo char_u *all_lflags = (char_u *)"$(CC) -s -o $(EXE) $(LIBS) -luuid -lole32 $(EXTRA_LIBS)"; >> pathdef.c + @echo char_u *compiled_user = (char_u *)"$(USERNAME)"; >> pathdef.c + @echo char_u *compiled_sys = (char_u *)"$(USERDOMAIN)"; >> pathdef.c +endif -- cgit v1.2.3