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
|
## Process this file with automake to produce Makefile.in
ACLOCAL_AMFLAGS= -I m4
NULL =
SUBDIRS_DOCS = docs
EXTRA_DIST_DOCS = \
gtk-doc.make \
docs/Makefile.am \
docs/Makefile.in \
docs/reference/Makefile.am \
docs/reference/Makefile.in \
docs/reference/libmenu-cache/Makefile.am \
docs/reference/libmenu-cache/Makefile.in \
$(NULL)
ALL_SUBDIRS = \
libmenu-cache \
menu-cache-gen \
menu-cache-daemon \
$(NULL)
SUBDIRS = $(ALL_SUBDIRS)
DIST_SUBDIRS = $(ALL_SUBDIRS)
EXTRA_DIST = \
$(NULL)
if ENABLE_GTK_DOC
DIST_SUBDIRS += $(SUBDIRS_DOCS)
SUBDIRS += $(SUBDIRS_DOCS)
else
EXTRA_DIST += $(EXTRA_DIST_DOCS)
endif
DISTCHECK_CONFIGURE_FLAGS=--enable-gtk-doc
|