File: Makefile.am

package info (click to toggle)
libmypaint 1.6.0-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 5,904 kB
  • sloc: ansic: 5,953; sh: 4,418; makefile: 292; python: 210
file content (65 lines) | stat: -rw-r--r-- 1,449 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
AM_CFLAGS = -DLIBMYPAINT_TESTING_ABS_TOP_SRCDIR='"@abs_top_srcdir@"'	\
			$(GLIB_CFLAGS)	\
			-I$(srcdir)/..

TESTS = \
	test-brush-load				\
	test-brush-persistence		\
	test-details				\
	test-fixed-tiled-surface	\
	test-rng

EXTRA_PROGRAMS = $(TESTS)

CLEANFILES = $(EXTRA_PROGRAMS)

TESTS_ENVIRONMENT = \
	LIBMYPAINT_TESTING_ABS_TOP_SRCDIR=@abs_top_srcdir@ 

noinst_LIBRARIES = libmypaint-tests.a

libmypaint_tests_a_SOURCES = \
	mypaint-benchmark.c				\
	mypaint-benchmark.h				\
	mypaint-test-surface.c			\
	mypaint-test-surface.h			\
	mypaint-utils-stroke-player.c	\
	mypaint-utils-stroke-player.h	\
	testutils.c						\
	testutils.h

if PLATFORM_WIN32
DEPS = -lintl
else
DEPS = -lm
endif

if HAVE_GPERFTOOLS
DEPS += $(LIBPROFILER_LIBS)
endif

LDADD = \
	$(DEPS)							\
	libmypaint-tests.a				\
	$(top_builddir)/libmypaint.la

EXTRA_DIST = \
	brushes/bulk.myb			\
	brushes/charcoal.myb		\
	brushes/coarse_bulk_2.myb	\
	brushes/impressionism.myb	\
	brushes/modelling.myb		\
	brushes/bad/bad_setting_types_1.myb \
	brushes/bad/bad_setting_types_2.myb \
	brushes/bad/bad_setting_types_3.myb \
	brushes/bad/bad_setting_types_4.myb \
	brushes/bad/empty.bad-myb \
	brushes/bad/entirely_unknown_settings.bad-myb \
	brushes/bad/missing_settings.bad-myb \
	brushes/bad/missing_version.bad-myb \
	brushes/bad/some_unknown_settings.myb \
	brushes/bad/some_unknown_inputs.myb \
	brushes/bad/truncated.bad-myb \
	events/painting30sec.dat

SUBDIRS = . gegl