mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2025-12-28 16:50:19 +01:00
The performance tools build system for Win32 hasn't been maintained for some time. The makefiles are now structured as in other directories (Makefile.sources used by both Makefile.am and Makefile.win32) and some additional code hides os-specific parts.
16 lines
316 B
Text
16 lines
316 B
Text
# Do not edit this file.
|
|
# Edit build/Makefile.win32.common for customization
|
|
|
|
top_srcdir = .
|
|
include $(top_srcdir)/build/Makefile.win32.common
|
|
|
|
all: cairo
|
|
|
|
cairo: inform
|
|
@$(MAKE) -C src -f Makefile.win32
|
|
|
|
perf: inform
|
|
@$(MAKE) -C perf -f Makefile.win32 perf
|
|
|
|
test: inform
|
|
@$(MAKE) -C test -f Makefile.win32 test
|