mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2026-01-03 01:10:23 +01:00
This patch adds a bunch of makefiles for building cairo with Visual C++. gnu make is still required, and make must be run from a command prompt that has the Visual C++ paths set up, as well as has the cygwin environment in the path. Run 'make -f Makefile.win32'.
18 lines
385 B
Text
18 lines
385 B
Text
|
|
SUBDIRS = pixman/src src
|
|
|
|
TEST_SUBDIRS = boilerplate test
|
|
|
|
all: cairo
|
|
|
|
cairo: src/cairo-features.h
|
|
@list='$(SUBDIRS)'; for f in $$list ; do \
|
|
echo making all in $$f... ; \
|
|
(cd $$f ; make -f Makefile.win32) || exit 1 ; \
|
|
done
|
|
|
|
test: cairo
|
|
@list='$(TEST_SUBDIRS)'; for f in $$list ; do \
|
|
echo making all in $$f... ; \
|
|
(cd $$f ; make -f Makefile.win32) || exit 1 ; \
|
|
done ;
|