* tests/interactive/Makefile.am:

* tests/conform/Makefile.am: Use $(EXEEXT) when specifying a
	dependency on an executable otherwise there won't be a rule to
	build it on Windows.
This commit is contained in:
Neil Roberts 2008-11-21 16:18:47 +00:00
parent 1c4bd93b11
commit fccc087959
3 changed files with 9 additions and 2 deletions

View File

@ -1,3 +1,10 @@
2008-11-21 Neil Roberts <neil@linux.intel.com>
* tests/interactive/Makefile.am:
* tests/conform/Makefile.am: Use $(EXEEXT) when specifying a
dependency on an executable otherwise there won't be a rule to
build it on Windows.
2008-11-21 Neil Roberts <neil@linux.intel.com>
Bug 1269 - mingw32 building failed at clutter-media.c

View File

@ -23,7 +23,7 @@ test_conformance_SOURCES = \
# For convenience, this provides a way to easily run individual unit tests:
.PHONY: wrappers
wrappers: test-conformance
wrappers: test-conformance$(EXEEXT)
for i in `./test-conformance -l -m thorough|grep '^/'`; \
do \
ln -sf $(top_srcdir)/tests/conform/wrapper.sh `basename $$i`; \

View File

@ -52,7 +52,7 @@ redhand.png:
# For convenience, this provides a way to easily run individual unit tests:
.PHONY: wrappers
wrappers: test-interactive
wrappers: test-interactive$(EXEEXT)
for i in $(UNIT_TESTS); \
do \
ln -sf $(top_srcdir)/tests/interactive/wrapper.sh $${i%*.c}; \