mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2025-12-25 00:10:10 +01:00
27 lines
668 B
Text
27 lines
668 B
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)
|