blob: 117af2730496150cb648705fde1cf109135fe2b4 (
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
|
## Process this file with automake to produce Makefile.in
if ENABLE_GTK_DOC_APP
app = app
endif
SUBDIRS = \
tools \
libgimpbase \
libgimpcolor \
libgimpconfig \
libgimpmath \
libgimpmodule \
libgimpthumb \
libgimpwidgets \
libgimp \
$(app) \
\
performance-logs
EXTRA_DIST = \
README \
README.gtkdoc \
contexts.txt \
debug-plug-ins.txt \
exif-handling.txt \
gbr.txt \
ggr.txt \
gih.txt \
gitlab-milestones.txt \
gpb.txt \
includes.txt \
libtool-instructions.txt \
parasites.txt \
pat.txt \
gegl-porting-plan.txt \
gtkbuilder-porting-guide.txt \
release-howto.txt \
structure.xml \
submitting-patches.txt \
tagging.txt \
ui-framework.txt \
undo.txt \
vbr.txt \
xcf.txt
# require gtk-doc when making dist
#
if ENABLE_GTK_DOC
dist-check-gtk-doc:
if ENABLE_GTK_DOC_APP
@echo "*** gtk-doc-app must be disabled in order to make dist"
@false
endif
else
dist-check-gtk-doc:
@echo "*** gtk-doc must be enabled in order to make dist"
@false
endif
dist-hook: dist-check-gtk-doc
|