Fixed texturing in Gallium.
[cairo/gpu.git] / Makefile.win32
bloba7e22052d8e4df9ee64251a7cc66300dca6fca4c
1 # Do not edit this file.
2 # Edit build/Makefile.win32.common for customization
4 top_srcdir = .
5 include $(top_srcdir)/build/Makefile.win32.common
6 include $(top_srcdir)/build/Makefile.win32.features-h
8 SUBDIRS = src
9 TEST_SUBDIRS = boilerplate test
11 all: inform cairo
13 cairo: src/cairo-features.h
14         @list='$(SUBDIRS)'; for f in $$list ; do \
15                 echo making all in $$f... ; \
16                 ($(MAKE) -C $$f -f Makefile.win32) || exit 1 ; \
17         done
19 test: cairo
20         @list='$(TEST_SUBDIRS)'; for f in $$list ; do \
21                 echo making all in $$f... ; \
22                 ($(MAKE) -C $$f -f Makefile.win32) || exit 1 ; \
23         done
24         @(cd test ; make -f Makefile.win32 test)
26 html:
27         @(cd test ; make -f Makefile.win32 html)