mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2026-04-07 04:10:41 +02:00
27 lines
661 B
Text
27 lines
661 B
Text
top_srcdir = .
|
|
include $(top_srcdir)/build/Makefile.win32.common
|
|
|
|
SUBDIRS = src
|
|
TEST_SUBDIRS = boilerplate test
|
|
|
|
all: inform cairo
|
|
|
|
src/cairo-features.h:
|
|
@echo Warning: creating default cairo-features.h
|
|
@cp src/cairo-features-win32.h src/cairo-features.h
|
|
|
|
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)
|