summaryrefslogtreecommitdiff
path: root/Makefile.win32
diff options
context:
space:
mode:
authorVladimir Vukicevic <vladimir@pobox.com>2006-09-09 17:08:18 -0700
committerU-CYCLONE\Vladimir Vukicevic <vladimir@cyclone.(none)>2006-09-09 17:08:18 -0700
commit0e59041321e49e1eae330567e0c7d27e7d71699d (patch)
treeebd31fe97c852485dbc9b117d408a83cc6198da6 /Makefile.win32
parent3c5a02c3edf300494cebfe746292b1eeeea08595 (diff)
[win32] win32-specific Makefiles for building with MSVC
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'.
Diffstat (limited to 'Makefile.win32')
-rw-r--r--Makefile.win3218
1 files changed, 18 insertions, 0 deletions
diff --git a/Makefile.win32 b/Makefile.win32
new file mode 100644
index 00000000..79a1dadd
--- /dev/null
+++ b/Makefile.win32
@@ -0,0 +1,18 @@
+
+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 ;