mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2026-01-24 05:10:29 +01:00
The only things we had missed were a few new/delete pairs, and some obvious header file fixups, (like not doing <string>).
16 lines
298 B
Makefile
16 lines
298 B
Makefile
EXTRA_PROGRAMS = perceptualdiff
|
|
|
|
noinst_LTLIBRARIES = libpdiff.la
|
|
libpdiff_la_SOURCES = \
|
|
pdiff.h \
|
|
lpyramid.c \
|
|
lpyramid.h \
|
|
pdiff.c
|
|
|
|
perceptualdiff_SOURCES = \
|
|
args.c \
|
|
args.h \
|
|
perceptualdiff.c
|
|
|
|
INCLUDES = -I$(top_srcdir)/src
|
|
LDADD = libpdiff.la $(top_builddir)/src/libcairo.la
|