summaryrefslogtreecommitdiff
path: root/test/Makefile.win32
blob: f4c129161aa572093ce35f0a1e23168358b80559 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
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)/%.obj, $(SOURCES))

cairo-test-suite.exe: $(OBJECTS)
	$(CC) $(OPT) $(MS_MDFLAGS) $(OBJECTS) -Fe"$@" -link $(LDFLAGS) /NODEFAULTLIB:library

./pdiff/pdiff.lib:
	(cd pdiff ; $(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)