gimp/devel-docs/Makefile.am
Sven Neumann 8c36cdaf72 suggest to use pango-1-16.
2007-05-06  Sven Neumann  <sven@gimp.org>

	* HACKING: suggest to use pango-1-16.

	* configure.in: added --enable-gtk-doc-app option and an 
automake
	conditional for it.
	
	* devel-docs/Makefile.am: build the app directory conditionally.

	* devel-docs/app/Makefile.am: override disthook since we don't
	want to distribute any generated files.


svn path=/trunk/; revision=22426
2007-05-05 23:16:58 +00:00

52 lines
798 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 = \
ChangeLog \
README \
README.gtkdoc \
debug-plug-ins.txt \
gbr.txt \
ggr.txt \
gih.txt \
gpb.txt \
includes.txt \
parasites.txt \
pat.txt \
structure.xml \
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