From: Andrea Canciani Date: Thu, 26 Sep 2013 07:12:31 +0000 (+0200) Subject: Fix building of "other" programs on MSVC X-Git-Tag: pixman-0.31.2~18 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=96ad6ebd8b8481aaa603d14953edb96504658eb7;p=platform%2Fupstream%2Fpixman.git Fix building of "other" programs on MSVC In d1434d112ca5cd325e4fb85fc60afd1b9e902786 the benchmarks have been extended to include other programs as well and the variable names have been updated accordingly in the autotools-based build system, but not in the MSVC one. --- diff --git a/test/Makefile.win32 b/test/Makefile.win32 index b6254a3..6cfb4a7 100644 --- a/test/Makefile.win32 +++ b/test/Makefile.win32 @@ -11,12 +11,12 @@ TEST_LDADD = \ libutils_OBJECTS = $(patsubst %.c, $(CFG_VAR)/%.obj, $(libutils_sources)) -SOURCES = $(patsubst %, %.c, $(TESTPROGRAMS) $(BENCHMARKS)) +SOURCES = $(patsubst %, %.c, $(TESTPROGRAMS) $(OTHERPROGRAMS)) OBJECTS = $(patsubst %.c, $(CFG_VAR)/%.obj, $(SOURCES)) TESTS = $(patsubst %, $(CFG_VAR)/%.exe, $(TESTPROGRAMS)) -BENCHS = $(patsubst %, $(CFG_VAR)/%.exe, $(BENCHMARKS)) +OTHERS = $(patsubst %, $(CFG_VAR)/%.exe, $(OTHERPROGRAMS)) -all: pixman inform $(TESTS) $(BENCHS) +all: pixman inform $(TESTS) $(OTHERS) check: pixman inform $(TESTS) @failures=0 ; \