1# Do not edit this file.
2# Edit build/Makefile.win32.common for customization
3
4top_srcdir = .
5include $(top_srcdir)/build/Makefile.win32.common
6include $(top_srcdir)/build/Makefile.win32.features-h
7
8SUBDIRS = src
9TEST_SUBDIRS = boilerplate test
10
11all: inform cairo
12
13cairo: src/cairo-features.h
14	@list='$(SUBDIRS)'; for f in $$list ; do \
15		echo making all in $$f... ; \
16		($(MAKE) -C $$f -f Makefile.win32) || exit 1 ; \
17	done
18
19test: cairo
20	@list='$(TEST_SUBDIRS)'; for f in $$list ; do \
21		echo making all in $$f... ; \
22		($(MAKE) -C $$f -f Makefile.win32) || exit 1 ; \
23	done
24	@(cd test ; make -f Makefile.win32 test)
25
26html:
27	@(cd test ; make -f Makefile.win32 html)
28