blob: 25fee716eb08ae1ce64a29ba6f854b128c6f575e (
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
|
#
# Win32 makefile
#
CAIRO_VERSION = 1.2.5
CAIRO_VERSION_MAJOR = 1
CAIRO_VERSION_MINOR = 2
CAIRO_VERSION_MICRO = 5
SUBDIRS = pixman/src src
TEST_SUBDIRS = boilerplate test
all: cairo
cairo: src/cairo-features.h
@list='$(SUBDIRS)'; for f in $$list ; do \
echo making all in $$f... ; \
(cd $$f ; make -f Makefile.win32) || exit 1 ; \
done
test: cairo
@list='$(TEST_SUBDIRS)'; for f in $$list ; do \
echo making all in $$f... ; \
(cd $$f ; make -f Makefile.win32) || exit 1 ; \
done
@(cd test ; make -f Makefile.win32 test)
html:
@(cd test ; make -f Makefile.win32 html)
|