mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2026-01-01 15:20:14 +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
404 B
Makefile
16 lines
404 B
Makefile
include $(top_srcdir)/build/Makefile.am.common
|
|
|
|
include $(top_srcdir)/perf/micro/Makefile.sources
|
|
|
|
noinst_LTLIBRARIES = libcairo-perf-micro.la
|
|
libcairo_perf_micro_la_SOURCES = \
|
|
$(libcairo_perf_micro_sources) \
|
|
$(libcairo_perf_micro_headers)
|
|
|
|
AM_CPPFLAGS = \
|
|
-I$(srcdir) \
|
|
-I$(top_srcdir)/boilerplate \
|
|
-I$(top_srcdir)/src \
|
|
-I$(top_srcdir)/perf \
|
|
-I$(top_builddir)/src \
|
|
$(CAIRO_CFLAGS)
|