Files
gimp/devel-docs/Makefile.am
Martin Nordholts 0f0bb336a8 devel-docs: Add gegl-porting-plan.txt
In order to effectively collaborate on this huge porting task, the
first step is to agree on exactly what we want to do.

In an effort to organize this, add gegl-porting-plan.txt to
devel-docs. In this document, we can describe how we want the port to
be done. This is not only for ourselves, but will also be useful for
non-core contributors.
2011-08-29 03:19:15 +02:00

60 lines
1010 B
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)
EXTRA_DIST = \
README \
README.gtkdoc \
bugzilla-milestones.txt \
contexts.txt \
debug-plug-ins.txt \
exif-handling.txt \
gbr.txt \
ggr.txt \
gih.txt \
gpb.txt \
includes.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