mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2026-01-03 10:30:24 +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.
35 lines
773 B
Text
35 lines
773 B
Text
libcairoperf_sources = \
|
|
cairo-perf-os2.c \
|
|
cairo-perf-posix.c \
|
|
cairo-perf-report.c \
|
|
cairo-perf-win32.c \
|
|
cairo-stats.c \
|
|
$(NULL)
|
|
|
|
libcairoperf_headers = \
|
|
cairo-perf.h \
|
|
cairo-stats.h \
|
|
$(NULL)
|
|
|
|
cairo_perf_trace_sources = cairo-perf-trace.c
|
|
cairo_perf_trace_external_sources = \
|
|
../src/cairo-error.c \
|
|
../src/cairo-hash.c \
|
|
$(NULL)
|
|
|
|
cairo_perf_micro_sources = cairo-perf-micro.c
|
|
|
|
cairo_perf_diff_files_sources = cairo-perf-diff-files.c
|
|
|
|
cairo_perf_print_sources = cairo-perf-print.c
|
|
|
|
cairo_perf_chart_sources = cairo-perf-chart.c
|
|
|
|
cairo_perf_compare_backends_sources = cairo-perf-compare-backends.c
|
|
|
|
cairo_perf_graph_files_sources = \
|
|
cairo-perf-graph-files.c \
|
|
cairo-perf-graph-widget.c \
|
|
$(NULL)
|
|
|
|
cairo_perf_graph_files_headers = cairo-perf-graph.h
|