summaryrefslogtreecommitdiffstats
path: root/app/paint/Makefile.am
blob: 1cc625e896208047f2c0ad57567769dda2d390b3 (plain)
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
## Process this file with automake to produce Makefile.in

AM_CPPFLAGS = \
	-DG_LOG_DOMAIN=\"Gimp-Paint\"		\
	-I$(top_builddir)			\
	-I$(top_srcdir)				\
	-I$(top_builddir)/app			\
	-I$(top_srcdir)/app			\
	$(CAIRO_CFLAGS)				\
	$(GEGL_CFLAGS)				\
	$(GDK_PIXBUF_CFLAGS)			\
	$(LIBMYPAINT_CFLAGS)		\
	-I$(includedir)

noinst_LIBRARIES = libapppaint.a

libapppaint_a_sources = \
	paint-enums.h			\
	paint-types.h			\
	gimp-paint.c			\
	gimp-paint.h			\
	gimpairbrush.c			\
	gimpairbrush.h			\
	gimpairbrushoptions.c		\
	gimpairbrushoptions.h		\
	gimpbrushcore.c			\
	gimpbrushcore.h			\
	gimpbrushcore-loops.cc		\
	gimpbrushcore-loops.h		\
	gimpbrushcore-kernels.h		\
	gimpclone.c			\
	gimpclone.h			\
	gimpcloneoptions.c		\
	gimpcloneoptions.h		\
	gimpconvolve.c			\
	gimpconvolve.h			\
	gimpconvolveoptions.c		\
	gimpconvolveoptions.h		\
	gimpdodgeburn.c			\
	gimpdodgeburn.h			\
	gimpdodgeburnoptions.c		\
	gimpdodgeburnoptions.h		\
	gimperaser.c			\
	gimperaser.h			\
	gimperaseroptions.c		\
	gimperaseroptions.h		\
	gimpheal.c			\
	gimpheal.h			\
	gimpink.c			\
	gimpink.h			\
	gimpink-blob.c			\
	gimpink-blob.h			\
	gimpinkoptions.c		\
	gimpinkoptions.h		\
	gimpinkundo.c			\
	gimpinkundo.h			\
	gimpmybrushcore.c		\
	gimpmybrushcore.h		\
	gimpmybrushoptions.c		\
	gimpmybrushoptions.h		\
	gimpmybrushsurface.c		\
	gimpmybrushsurface.h		\
	gimppaintcore.c			\
	gimppaintcore.h			\
	gimppaintcore-loops.cc		\
	gimppaintcore-loops.h		\
	gimppaintcore-stroke.c		\
	gimppaintcore-stroke.h		\
	gimppaintcoreundo.c		\
	gimppaintcoreundo.h		\
	gimppaintoptions.c		\
	gimppaintoptions.h		\
	gimppencil.c			\
	gimppencil.h			\
	gimppenciloptions.c		\
	gimppenciloptions.h		\
	gimppaintbrush.c		\
	gimppaintbrush.h		\
	gimpperspectiveclone.c		\
	gimpperspectiveclone.h		\
	gimpperspectivecloneoptions.c	\
	gimpperspectivecloneoptions.h	\
	gimpsmudge.c			\
	gimpsmudge.h			\
	gimpsmudgeoptions.c		\
	gimpsmudgeoptions.h		\
	gimpsourcecore.c		\
	gimpsourcecore.h		\
	gimpsourceoptions.c		\
	gimpsourceoptions.h

libapppaint_a_built_sources = paint-enums.c

libapppaint_a_SOURCES = $(libapppaint_a_built_sources) $(libapppaint_a_sources)

#
# rules to generate built sources
#
# setup autogeneration dependencies
gen_sources = xgen-pec
CLEANFILES = $(gen_sources)

xgen-pec: $(srcdir)/paint-enums.h $(GIMP_MKENUMS) Makefile.am
	$(AM_V_GEN) $(GIMP_MKENUMS) \
		--fhead "#include \"config.h\"\n#include <gio/gio.h>\n#include \"libgimpbase/gimpbase.h\"\n#include \"paint-enums.h\"\n#include \"gimp-intl.h\"" \
		--fprod "\n/* enumerations from \"@basename@\" */" \
		--vhead "GType\n@enum_name@_get_type (void)\n{\n  static const G@Type@Value values[] =\n  {" \
		--vprod "    { @VALUENAME@, \"@VALUENAME@\", \"@valuenick@\" }," \
		--vtail "    { 0, NULL, NULL }\n  };\n" \
		--dhead "  static const Gimp@Type@Desc descs[] =\n  {" \
		--dprod "    { @VALUENAME@, @valuedesc@, @valuehelp@ },@if ('@valueabbrev@' ne 'NULL')@\n    /* Translators: this is an abbreviated version of @valueudesc@.\n       Keep it short. */\n    { @VALUENAME@, @valueabbrev@, NULL },@endif@" \
		--dtail "    { 0, NULL, NULL }\n  };\n\n  static GType type = 0;\n\n  if (G_UNLIKELY (! type))\n    {\n      type = g_@type@_register_static (\"@EnumName@\", values);\n      gimp_type_set_translation_context (type, \"@enumnick@\");\n      gimp_@type@_set_value_descriptions (type, descs);\n    }\n\n  return type;\n}\n" \
		$< > $@

# copy the generated enum file back to the source directory only if it's
# changed; otherwise, only update its timestamp, so that the recipe isn't
# executed again on the next build, however, allow this to (harmlessly) fail,
# to support building from a read-only source tree.
$(srcdir)/paint-enums.c: xgen-pec
	$(AM_V_GEN) if ! cmp -s $< $@; then \
		cp $< $@; \
	else \
		touch $@ 2> /dev/null \
		|| true; \
	fi