comparison src/GvimExt/Make_ming.mak @ 89:e1a8191c6768

updated for version 7.0036
author vimboss
date Sun, 09 Jan 2005 21:16:21 +0000
parents bdeee1504ac1
children 4ec11bb387a5
comparison
equal deleted inserted replaced
88:2b4debdc8d2c 89:e1a8191c6768
16 # If you have a newer MinGW or you are using cygwin set it to no and 16 # If you have a newer MinGW or you are using cygwin set it to no and
17 # check also the executables 17 # check also the executables
18 MINGWOLD = no 18 MINGWOLD = no
19 19
20 ifeq ($(CROSS),yes) 20 ifeq ($(CROSS),yes)
21 DEL = rm
21 ifeq ($(MINGWOLD),yes) 22 ifeq ($(MINGWOLD),yes)
22 CXX = i586-mingw32msvc-g++ 23 CXX = i586-mingw32msvc-g++
23 CXXFLAGS := -O2 -mno-cygwin -fvtable-thunks 24 CXXFLAGS := -O2 -mno-cygwin -fvtable-thunks
24 WINDRES = i586-mingw32msvc-windres 25 WINDRES = i586-mingw32msvc-windres
25 else 26 else
29 endif 30 endif
30 else 31 else
31 CXX := g++ 32 CXX := g++
32 WINDRES := windres 33 WINDRES := windres
33 CXXFLAGS := -O2 -mno-cygwin 34 CXXFLAGS := -O2 -mno-cygwin
35 ifneq (sh.exe, $(SHELL))
36 DEL = rm
37 else
38 DEL = del
39 endif
34 endif 40 endif
35 LIBS := -luuid 41 LIBS := -luuid
36 RES := gvimext.res 42 RES := gvimext.res
37 DEFFILE = gvimext_ming.def 43 DEFFILE = gvimext_ming.def
38 OBJ := gvimext.o 44 OBJ := gvimext.o
57 63
58 $(RES): gvimext_ming.rc 64 $(RES): gvimext_ming.rc
59 $(WINDRES) --input-format=rc --output-format=coff -DMING $? -o $@ 65 $(WINDRES) --input-format=rc --output-format=coff -DMING $? -o $@
60 66
61 clean: clean-custom 67 clean: clean-custom
62 $(RM) $(OBJ) $(RES) $(DLL) 68 -$(DEL) $(OBJ) $(RES) $(DLL)
63 69