Makefile.win32 512 B

123456789101112131415161718192021222324
  1. default: all
  2. # Do not edit this file.
  3. # Edit build/Makefile.win32.common for customization
  4. top_srcdir = .
  5. include $(top_srcdir)/build/Makefile.win32.inform
  6. all: cairo
  7. cairo: inform
  8. @$(MAKE) -C src -f Makefile.win32
  9. perf: inform
  10. @$(MAKE) -C perf -f Makefile.win32 perf
  11. test: inform
  12. @$(MAKE) -C test -f Makefile.win32 test
  13. clean:
  14. @$(MAKE) -C boilerplate -f Makefile.win32 clean
  15. @$(MAKE) -C perf -f Makefile.win32 clean
  16. @$(MAKE) -C src -f Makefile.win32 clean
  17. @$(MAKE) -C test -f Makefile.win32 clean