summaryrefslogtreecommitdiff
path: root/Makefile.win32
blob: a7e22052d8e4df9ee64251a7cc66300dca6fca4c (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
# Do not edit this file.
# Edit build/Makefile.win32.common for customization

top_srcdir = .
include $(top_srcdir)/build/Makefile.win32.common
include $(top_srcdir)/build/Makefile.win32.features-h

SUBDIRS = src
TEST_SUBDIRS = boilerplate test

all: inform cairo

cairo: src/cairo-features.h
	@list='$(SUBDIRS)'; for f in $$list ; do \
		echo making all in $$f... ; \
		($(MAKE) -C $$f -f Makefile.win32) || exit 1 ; \
	done

test: cairo
	@list='$(TEST_SUBDIRS)'; for f in $$list ; do \
		echo making all in $$f... ; \
		($(MAKE) -C $$f -f Makefile.win32) || exit 1 ; \
	done
	@(cd test ; make -f Makefile.win32 test)

html:
	@(cd test ; make -f Makefile.win32 html)