[Pixman] [PATCH 5/7] build-win32: Add root Makefile.win32

Andrea Canciani ranma42 at gmail.com
Sun Sep 4 13:53:43 PDT 2011


Add Makefile.win32 to the pixman root. This makefile can recursively
run the other ones to compile the library or the test suite.
---
 Makefile.win32 |   20 ++++++++++++++++++++
 1 files changed, 20 insertions(+), 0 deletions(-)
 create mode 100644 Makefile.win32

diff --git a/Makefile.win32 b/Makefile.win32
new file mode 100644
index 0000000..5b74878
--- /dev/null
+++ b/Makefile.win32
@@ -0,0 +1,20 @@
+default: all
+
+top_srcdir = .
+include $(top_srcdir)/Makefile.win32.common
+
+# Recursive targets
+pixman_r:
+	@$(MAKE) -C pixman -f Makefile.win32
+
+test_r:
+	@$(MAKE) -C test -f Makefile.win32
+
+clean_r:
+	@$(MAKE) -C pixman -f Makefile.win32 clean
+	@$(MAKE) -C test   -f Makefile.win32 clean
+
+# Base targets
+all: test_r
+
+clean: clean_r
-- 
1.7.4.4



More information about the Pixman mailing list