summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrea Canciani <ranma42@gmail.com>2013-09-26 09:12:31 +0200
committerAndrea Canciani <ranma42@gmail.com>2013-10-09 14:23:11 +0200
commit96ad6ebd8b8481aaa603d14953edb96504658eb7 (patch)
treee34ce47d8a11429457de843447120712daa5e190
parent31ac784f3427a189e34ef6fdc937441b613407b9 (diff)
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.
-rw-r--r--test/Makefile.win326
1 files changed, 3 insertions, 3 deletions
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 ; \