build-win32: Add root Makefile.win32
authorAndrea Canciani <ranma42@gmail.com>
Sun, 4 Sep 2011 19:56:20 +0000 (21:56 +0200)
committerAndrea Canciani <ranma42@gmail.com>
Wed, 14 Sep 2011 14:03:35 +0000 (07:03 -0700)
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 [new file with mode: 0644]

diff --git a/Makefile.win32 b/Makefile.win32
new file mode 100644 (file)
index 0000000..5b74878
--- /dev/null
@@ -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