[build] Added glade support
[adg.git] / Makefile.am
blob7d145ff003fe0ae06f67f10b3cee9d1dfb351a9a
1 include $(top_srcdir)/build/Makefile.am.common
3 xml2txt_stylesheet=             $(srcdir)/docs/gnu/docbook2txt.xsl
4 xml2txt_command=                $(MSG_GEN) ; \
5                                 if test -x $(XSLTPROC) ; then : ; else \
6                                   echo ' *WARN  libxslt-1.0.19 or later is required to generate $@' ; \
7                                   touch $@ ; \
8                                   exit 0 ; \
9                                 fi ; \
10                                 $(XSLTPROC) --novalid -o $@ $(xml2txt_stylesheet)
11 ACLOCAL_AMFLAGS=                -I build
12 DISTCHECK_CONFIGURE_FLAGS=      --enable-gtk-doc
14 BUILT_SOURCES=                  ChangeLog \
15                                 README \
16                                 NEWS \
17                                 TODO \
18                                 CONTRIBUTING
20 EXTRA_DIST=                     COPYING \
21                                 ChangeLog-0.2.1 \
22                                 INSTALL \
23                                 THANKS \
24                                 adg.doap \
25                                 $(BUILT_SOURCES)
27 SUBDIRS=                        src
28 if HAVE_GTK2
29 SUBDIRS+=                       demo
30 endif
31 SUBDIRS+=                       po \
32                                 po-properties \
33                                 docs
36 # Creating ChangeLog files from git log:
37 # idea stolen from cairo/build/Makefile.am.changelog
38 ChangeLog:
39         $(MSG_GEN) ; \
40         if test -d "$(srcdir)/.git"; then \
41           ( cd "$(srcdir)" && git log --stat > $@ ) ; \
42         else \
43           echo ' *WARN  A git checkout is required to generate $@' ; \
44           touch $@ ; \
45         fi
47 # Autogenerated text docs
48 README: $(xml2txt_stylesheet) $(srcdir)/docs/gnu/README.xml
49         $(xml2txt_command) $(srcdir)/docs/gnu/README.xml
51 NEWS: $(xml2txt_stylesheet) $(srcdir)/docs/gnu/NEWS.xml
52         $(xml2txt_command) $(srcdir)/docs/gnu/NEWS.xml
54 TODO: $(xml2txt_stylesheet) $(srcdir)/docs/gnu/TODO.xml
55         $(xml2txt_command) $(srcdir)/docs/gnu/TODO.xml
57 CONTRIBUTING: $(xml2txt_stylesheet) $(srcdir)/docs/gnu/CONTRIBUTING.xml
58         $(xml2txt_command) $(srcdir)/docs/gnu/CONTRIBUTING.xml