mirror of https://github.com/GNOME/gimp.git
63 lines
1.0 KiB
Makefile
63 lines
1.0 KiB
Makefile
## 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 \
|
|
gtkbuilder-porting-guide.txt \
|
|
release-howto.txt \
|
|
structure.xml \
|
|
submitting-patches.txt \
|
|
tagging.txt \
|
|
ui-framework.txt \
|
|
undo.txt \
|
|
vbr.txt \
|
|
xcf.txt \
|
|
version.in
|
|
|
|
|
|
# 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
|