forked from aniani/vim
patch 8.1.0483: MinGW does not build tee.exe
Problem: MinGW does not build tee.exe. Solution: Add build instructions. (Yasuhiro Matsumoto, closes #3548)
This commit is contained in:
@@ -943,7 +943,7 @@ ifeq (yes, $(MAP))
|
|||||||
LFLAGS += -Wl,-Map=$(TARGET).map
|
LFLAGS += -Wl,-Map=$(TARGET).map
|
||||||
endif
|
endif
|
||||||
|
|
||||||
all: $(TARGET) vimrun.exe xxd/xxd.exe install.exe uninstal.exe GvimExt/gvimext.dll
|
all: $(TARGET) vimrun.exe xxd/xxd.exe tee/tee.exe install.exe uninstal.exe GvimExt/gvimext.dll
|
||||||
|
|
||||||
vimrun.exe: vimrun.c
|
vimrun.exe: vimrun.c
|
||||||
$(CC) $(CFLAGS) -o vimrun.exe vimrun.c $(LIB)
|
$(CC) $(CFLAGS) -o vimrun.exe vimrun.c $(LIB)
|
||||||
@@ -968,6 +968,9 @@ mpress: exes
|
|||||||
xxd/xxd.exe: xxd/xxd.c
|
xxd/xxd.exe: xxd/xxd.c
|
||||||
$(MAKE) -C xxd -f Make_ming.mak CC='$(CC)'
|
$(MAKE) -C xxd -f Make_ming.mak CC='$(CC)'
|
||||||
|
|
||||||
|
tee/tee.exe: tee/tee.c
|
||||||
|
$(MAKE) -C tee CC='$(CC)'
|
||||||
|
|
||||||
GvimExt/gvimext.dll: GvimExt/gvimext.cpp GvimExt/gvimext.rc GvimExt/gvimext.h
|
GvimExt/gvimext.dll: GvimExt/gvimext.cpp GvimExt/gvimext.rc GvimExt/gvimext.h
|
||||||
$(MAKE) -C GvimExt -f Make_ming.mak CROSS=$(CROSS) CROSS_COMPILE=$(CROSS_COMPILE) CXX='$(CXX)' STATIC_STDCPLUS=$(STATIC_STDCPLUS)
|
$(MAKE) -C GvimExt -f Make_ming.mak CROSS=$(CROSS) CROSS_COMPILE=$(CROSS_COMPILE) CXX='$(CXX)' STATIC_STDCPLUS=$(STATIC_STDCPLUS)
|
||||||
|
|
||||||
@@ -996,6 +999,7 @@ ifdef MZSCHEME
|
|||||||
endif
|
endif
|
||||||
$(MAKE) -C GvimExt -f Make_ming.mak clean
|
$(MAKE) -C GvimExt -f Make_ming.mak clean
|
||||||
$(MAKE) -C xxd -f Make_ming.mak clean
|
$(MAKE) -C xxd -f Make_ming.mak clean
|
||||||
|
$(MAKE) -C tee clean
|
||||||
|
|
||||||
###########################################################################
|
###########################################################################
|
||||||
INCL = vim.h alloc.h arabic.h ascii.h ex_cmds.h farsi.h feature.h globals.h \
|
INCL = vim.h alloc.h arabic.h ascii.h ex_cmds.h farsi.h feature.h globals.h \
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
# A very (if not the most) simplistic Makefile for OS/2
|
# A very (if not the most) simplistic Makefile for MS-Windows and OS/2
|
||||||
|
|
||||||
CC=gcc
|
CC=gcc
|
||||||
CFLAGS=-O2 -fno-strength-reduce
|
CFLAGS=-O2 -fno-strength-reduce
|
||||||
|
@@ -792,6 +792,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
483,
|
||||||
/**/
|
/**/
|
||||||
482,
|
482,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user