cairo/test/Makefile.win32
Jeff Muizelaar 2d6336624c [test-win32] Fix static linking of the test suite.
Previously, the test suite needed to be dynamically linked to work.
2009-04-01 11:32:58 -04:00

49 lines
1.2 KiB
Text

top_srcdir = ..
include $(top_srcdir)/build/Makefile.win32.common
include $(top_srcdir)/test/Makefile.sources
CFLAGS += -I../src -I../boilerplate -I./pdiff
LDFLAGS += ./pdiff/pdiff.lib ../src/$(CFG)/cairo-static.lib $(PIXMAN_LIBS) ../boilerplate/$(CFG)/boiler.lib $(EXE_LDFLAGS)
TESTCORE_SOURCES = \
cairo-test.c \
buffer-diff.c \
$(NULL)
all: cairo-test-suite.exe
cairo-test-constructors.c: $(test_sources)
./make-cairo-test-constructors.pl $(test_sources) > $@
SOURCES = $(cairo_test_suite_sources) $(test_sources) cairo-test-constructors.c
OBJECTS = $(patsubst %.c, $(CFG)/%-static.obj, $(SOURCES))
cairo-test-suite.exe: $(OBJECTS) ./pdiff/pdiff.lib ../boilerplate/$(CFG)/boiler.lib
$(CC) $(OPT) $(MS_MDFLAGS) $(OBJECTS) -Fe"$@" -link $(LDFLAGS) $(CAIRO_LIBS) /NODEFAULTLIB:library
./pdiff/pdiff.lib:
(cd pdiff ; $(MAKE) -f Makefile.win32)
../boilerplate/$(CFG)/boiler.lib:
(cd ../boilerplate ; $(MAKE) -f Makefile.win32)
.PHONY: check test html
check: cairo-test-suite.exe
./cairo-test-suite.exe
# define gen-html so that both 'test' and 'html' targets
# can generate html while having different dependencies
define gen-html
@echo Creating index.html...
@perl make-html.pl > index.html
endef
test: check
$(gen-html)
html:
$(gen-html)