Makefile.win32   [plain text]


# 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)