mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2025-12-30 00:20:13 +01:00
Add a CairoScript interpreter library and use it to replay the test output for the CairoScript backend. The library is also used by the currently standalone Sphinx debugger [git://anongit.freedesktop.org/~ickle/sphinx]. The syntax/operator semantics are not yet finalized, but are expected to mature before the next stable release.
30 lines
638 B
Makefile
30 lines
638 B
Makefile
include $(top_srcdir)/build/Makefile.am.common
|
|
|
|
SUBDIRS = . cairo-script
|
|
|
|
if BUILD_TRACE
|
|
SUBDIRS += cairo-trace
|
|
endif
|
|
|
|
util: malloc-stats.so backtrace-symbols.so
|
|
|
|
.la.so:
|
|
$(RM) $@
|
|
$(LN_S) .libs/$*.so $@
|
|
|
|
CLEANFILES += *.so
|
|
|
|
# The -rpath is needed to build shared objects that are not installed,
|
|
# ie. with EXTRA_LTLIBRARIES
|
|
AM_LDFLAGS = -module -avoid-version -export-dynamic -rpath /dev/null
|
|
|
|
EXTRA_LTLIBRARIES += malloc-stats.la backtrace-symbols.la
|
|
|
|
backtrace_symbols_la_LIBADD = -lbfd -liberty
|
|
|
|
malloc_stats_la_LIBADD = $(backtrace_symbols_la_LIBADD) backtrace-symbols.lo
|
|
|
|
EXTRA_DIST += \
|
|
COPYING \
|
|
xr2cairo \
|
|
cairo-api-update
|