comparison Makefile.gen @ 2254:279b69a433df

Fix Windows cross-building.
author Matti Hamalainen <ccr@tnsp.org>
date Sat, 15 Jun 2019 21:50:58 +0300
parents bc16ad660e4e
children 92385f9b7384
comparison
equal deleted inserted replaced
2253:bc16ad660e4e 2254:279b69a433df
260 ### What tests to build? 260 ### What tests to build?
261 ifeq ($(DM_BUILD_TESTS),yes) 261 ifeq ($(DM_BUILD_TESTS),yes)
262 TESTS_BINARIES += vecmattest fptest dzlibtest encbr1test 262 TESTS_BINARIES += vecmattest fptest dzlibtest encbr1test
263 endif 263 endif
264 264
265 ifneq ($(EXEEXT),.exe) 265 ifeq ($(EXEEXT),.exe)
266 # Cross-building Windows binaries requires locally installed utilities
267 FONTCONV_BIN=fontconv
268 DATA2INC_BIN=data2inc
269 else
266 FONTCONV_BIN=$(DMLIB)tools/fontconv 270 FONTCONV_BIN=$(DMLIB)tools/fontconv
267 DATA2INC_BIN=$(DMLIB)tools/data2inc 271 DATA2INC_BIN=$(DMLIB)tools/data2inc
268 endif 272 endif
269 273
270 274