comparison src/Make_ming.mak @ 6284:4c29b75cae19 v7.4.476

updated for version 7.4.476 Problem: MingW: compiling with "XPM=no" doesn't work. Solution: Check for the "no" value. (KF Leong) Also for Cygwin. (Ken Takata)
author Bram Moolenaar <bram@vim.org>
date Wed, 15 Oct 2014 12:07:11 +0200
parents ab71bb81b84e
children 112c80234ce3
comparison
equal deleted inserted replaced
6283:79c59b4c9d20 6284:4c29b75cae19
20 # http://upx.sourceforge.net/ 20 # http://upx.sourceforge.net/
21 # "make mpress" uses the MPRESS compressor for 32- and 64-bit EXEs: 21 # "make mpress" uses the MPRESS compressor for 32- and 64-bit EXEs:
22 # http://www.matcode.com/mpress.htm 22 # http://www.matcode.com/mpress.htm
23 # 23 #
24 # Maintained by Ron Aaron <ronaharon@yahoo.com> et al. 24 # Maintained by Ron Aaron <ronaharon@yahoo.com> et al.
25 # Updated 2012 Sep 5. 25 # Updated 2014 Oct 13.
26 26
27 #>>>>> choose options: 27 #>>>>> choose options:
28 # set to yes for a debug build 28 # set to yes for a debug build
29 DEBUG=no 29 DEBUG=no
30 # set to SIZE for size, SPEED for speed, MAXSPEED for maximum optimization 30 # set to SIZE for size, SPEED for speed, MAXSPEED for maximum optimization
611 OBJ += $(OUTDIR)/gui_dwrite.o 611 OBJ += $(OUTDIR)/gui_dwrite.o
612 LIB += -ld2d1 -ldwrite 612 LIB += -ld2d1 -ldwrite
613 USE_STDCPLUS = yes 613 USE_STDCPLUS = yes
614 endif 614 endif
615 endif 615 endif
616 ifdef XPM 616 ifneq ($(XPM),no)
617 # Only allow XPM for a GUI build. 617 # Only allow XPM for a GUI build.
618 ifeq (yes, $(GUI)) 618 ifeq (yes, $(GUI))
619 OBJ += $(OUTDIR)/xpm_w32.o 619 OBJ += $(OUTDIR)/xpm_w32.o
620 # You'll need libXpm.a from http://gnuwin32.sf.net 620 # You'll need libXpm.a from http://gnuwin32.sf.net
621 LIB += -L$(XPM)/lib -lXpm 621 LIB += -L$(XPM)/lib -lXpm