diff options
Diffstat (limited to 'pixman/Makefile.win32')
-rw-r--r-- | pixman/Makefile.win32 | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/pixman/Makefile.win32 b/pixman/Makefile.win32 new file mode 100644 index 000000000..91cd12a52 --- /dev/null +++ b/pixman/Makefile.win32 @@ -0,0 +1,25 @@ +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 + +check_r: + @$(MAKE) -C test -f Makefile.win32 check + +# Base targets +all: test_r + +clean: clean_r + +check: check_r |