mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2025-12-20 04:40:07 +01:00
Include a COPYING inside perf/, test/, util/ to clarify the licensing conditions beneath the respective directories. This is because cairo itself (libcairo.so) is LGPL-2.1/MPL-1.1 but that only relates to src/. The auxiliary source files are under a mix of free licenses and we wish to be clear just what license applies to each file. In particular, cairo-trace needs to include the GPL terms and conditions.
24 lines
689 B
Makefile
24 lines
689 B
Makefile
bin_SCRIPTS = cairo-trace
|
|
lib_LTLIBRARIES = cairo-trace.la
|
|
|
|
AM_CPPFLAGS = -I$(top_srcdir)/src \
|
|
-I$(top_builddir)/src
|
|
|
|
cairo_trace_la_SOURCES = \
|
|
lookup-symbol.c \
|
|
lookup-symbol.h \
|
|
trace.c
|
|
cairo_trace_la_CFLAGS = @FREETYPE_CFLAGS@ @CAIRO_CFLAGS@
|
|
cairo_trace_la_LDFLAGS = -module -no-undefined
|
|
cairo_trace_la_LIBADD = -ldl -lz -lbfd
|
|
|
|
system-install:
|
|
grep -sq @libdir@/cairo-trace.so /etc/ld.so.preload || echo @libdir@/cairo-trace.so >> /etc/ld.so.preload
|
|
|
|
system-uninstall:
|
|
sed -e '/\/usr\/local\/lib\/cairo-trace.so/d' < /etc/ld.so.preload > /tmp/ld.so.preload && mv /tmp/ld.so.preload /etc/ld.so.preload;
|
|
|
|
EXTRA_DIST = \
|
|
COPYING \
|
|
COPYING-GPL-3 \
|
|
cairo-trace.in
|