comparison Makefile @ 3029:2849bea3711f

disable building flex for native mingw
author John W. Eaton <jwe@octave.org>
date Sat, 08 Jun 2013 19:00:32 -0400
parents 051574ceb3fc
children 951da75fd09c
comparison
equal deleted inserted replaced
3028:d024ce7bdaf0 3029:2849bea3711f
101 $(SED) unzip wget xz 101 $(SED) unzip wget xz
102 102
103 LIBTOOL := libtool 103 LIBTOOL := libtool
104 LIBTOOLIZE := libtoolize 104 LIBTOOLIZE := libtoolize
105 BUILD_TOOLS := $(patsubst src/%.mk, %, $(wildcard src/build-*.mk)) 105 BUILD_TOOLS := $(patsubst src/%.mk, %, $(wildcard src/build-*.mk))
106 # Building flex for native mingw fails, so disable it.
107 ifeq ($(MXE_NATIVE_MINGW_BUILD),yes)
108 BUILD_TOOLS := $(filter-out build-flex, $(BUILD_TOOLS))
109 endif
106 110
107 STAMP_DIR := $(PWD)/installed-packages 111 STAMP_DIR := $(PWD)/installed-packages
108 MSYS_INFO_DIR := $(PWD)/msys-info 112 MSYS_INFO_DIR := $(PWD)/msys-info
109 LOG_DIR := $(PWD)/log 113 LOG_DIR := $(PWD)/log
110 TIMESTAMP := $(shell date +%Y%m%d_%H%M%S) 114 TIMESTAMP := $(shell date +%Y%m%d_%H%M%S)