cairo/test/Makefile.win32
Andrea Canciani d95cf87c03 boilerplate: Use any2ppm from ANY2PPM env variable
If the environment variable ANY2PPM is set, use it as the path to the
any2ppm program. Otherwise, default to "./any2ppm" as before.

This makes it possible to set the ANY2PPM variable in the
Makefile.win32 build system, which makes it possible to use the "test"
target on the script backend.
2012-02-23 00:16:44 +01:00

55 lines
1.6 KiB
Text

top_srcdir = ..
include $(top_srcdir)/build/Makefile.win32.common
include $(top_srcdir)/test/Makefile.sources
CFLAGS += \
-I$(top_srcdir)/boilerplate \
-I$(top_srcdir)/util/cairo-script/ \
-I./pdiff \
$(NULL)
TEST_LIBS = \
./pdiff/$(CFG)/pdiff.lib \
$(top_builddir)/boilerplate/$(CFG)/boiler.lib \
$(top_builddir)/src/$(CFG)/cairo-static.lib \
$(NULL)
all: inform $(CFG)/cairo-test-suite.exe
cairo-test-constructors.c: Makefile.sources Makefile.win32 $(test_sources) make-cairo-test-constructors.sh
sh ./make-cairo-test-constructors.sh $(test_sources) > $@
SOURCES = $(cairo_test_suite_sources) $(test_sources) cairo-test-constructors.c
OBJECTS = $(patsubst %.c, $(CFG)/%-static.obj, $(SOURCES))
ANY2PPM_OBJS = \
$(CFG)/any2ppm-static.obj \
$(top_builddir)/util/cairo-script/$(CFG)/libcairo-script-interpreter.lib \
$(top_builddir)/src/$(CFG)/cairo-static.lib \
$(NULL)
$(CFG)/cairo-test-suite.exe: $(OBJECTS) $(TEST_LIBS)
@$(LD) $(CAIRO_LDFLAGS) -OUT:$@ $(OBJECTS) $(TEST_LIBS) $(CAIRO_LIBS)
$(CFG)/any2ppm.exe: $(ANY2PPM_OBJS)
$(LD) $(CAIRO_LDFLAGS) -OUT:$@ $^ $(CAIRO_LIBS)
./pdiff/$(CFG)/pdiff.lib:
$(MAKE) -C pdiff -f Makefile.win32
$(top_builddir)/src/$(CFG)/cairo-static.lib:
$(MAKE) -C $(top_srcdir)/src -f Makefile.win32
$(top_builddir)/boilerplate/$(CFG)/boiler.lib:
$(MAKE) -C $(top_srcdir)/boilerplate -f Makefile.win32
$(top_builddir)/util/cairo-script/$(CFG)/libcairo-script-interpreter.lib:
$(MAKE) -C $(top_srcdir)/util/cairo-script -f Makefile.win32
.PHONY: check test
check: inform $(CFG)/any2ppm.exe $(CFG)/cairo-test-suite.exe
@ANY2PPM=$(CFG)\\any2ppm.exe $(CFG)/cairo-test-suite.exe
test: inform check