comparison src/Make_ming.mak @ 24:8ff7fd162d3c v7.0016

updated for version 7.0016
author vimboss
date Mon, 13 Sep 2004 20:26:32 +0000
parents 946da5994c01
children 410fa1a31baf
comparison
equal deleted inserted replaced
23:3f44e9abe4ec 24:8ff7fd162d3c
115 # the modern MinGW can dynamically link to dlls directly 115 # the modern MinGW can dynamically link to dlls directly
116 # point MZSCHEME_LIBDIR to where you put libmzschXXXXXXX.dll and libgcXXXXXXX.dll 116 # point MZSCHEME_LIBDIR to where you put libmzschXXXXXXX.dll and libgcXXXXXXX.dll
117 # c:/windows/system32 isn't a good idea, use some other dir; 117 # c:/windows/system32 isn't a good idea, use some other dir;
118 # to build you can put them in temp dir) 118 # to build you can put them in temp dir)
119 ifndef MZSCHEME_LIBDIR 119 ifndef MZSCHEME_LIBDIR
120 MZSCHEME_LIBDIR=$(MZSCHEME) 120 MZSCHEME_LIBDIR=-L$(MZSCHEME)
121 endif 121 endif
122 endif 122 endif
123 123
124 # Python support -- works with the ActiveState python 2.0 release (and others 124 # Python support -- works with the ActiveState python 2.0 release (and others
125 # too, probably) 125 # too, probably)
508 508
509 uninstal.exe: uninstal.c 509 uninstal.exe: uninstal.c
510 $(CC) $(CFLAGS) -o uninstal.exe uninstal.c $(LIB) 510 $(CC) $(CFLAGS) -o uninstal.exe uninstal.c $(LIB)
511 511
512 $(TARGET): $(OUTDIR) $(OBJ) 512 $(TARGET): $(OUTDIR) $(OBJ)
513 $(CC) $(CFLAGS) $(LFLAGS) -o $@ $(OBJ) $(LIB) -lole32 -luuid -L $(MZSCHEME_LIBDIR) $(MZSCHEME_LIB) $(PYTHONLIB) $(RUBYLIB) 513 $(CC) $(CFLAGS) $(LFLAGS) -o $@ $(OBJ) $(LIB) -lole32 -luuid $(MZSCHEME_LIBDIR) $(MZSCHEME_LIB) $(PYTHONLIB) $(RUBYLIB)
514 514
515 upx: exes 515 upx: exes
516 upx gvim.exe 516 upx gvim.exe
517 upx vim.exe 517 upx vim.exe
518 518