[AdgDim] Invalidate also the quote value text
[adg.git] / Makefile.am
blob1ca46b475deff34ba9e95046389898330bb70348
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-gtk2 \
13                                 --enable-gtk-doc \
14                                 --enable-glade \
15                                 --enable-test-framework
17 BUILT_SOURCES=                  ChangeLog \
18                                 README \
19                                 NEWS \
20                                 TODO \
21                                 CONTRIBUTING
23 EXTRA_DIST=                     COPYING \
24                                 ChangeLog-0.2.1 \
25                                 INSTALL \
26                                 THANKS \
27                                 adg.doap \
28                                 $(BUILT_SOURCES)
30 SUBDIRS=                        src
31 if HAVE_GTK2
32 SUBDIRS+=                       demo
33 endif
34 SUBDIRS+=                       po \
35                                 po-properties \
36                                 docs
39 # Creating ChangeLog files from git log:
40 # idea stolen from cairo/build/Makefile.am.changelog
41 ChangeLog:
42         $(MSG_GEN) ; \
43         if test -d "$(srcdir)/.git"; then \
44           ( cd "$(srcdir)" && git log --stat > $@ ) ; \
45         else \
46           echo ' *WARN  A git checkout is required to generate $@' ; \
47           touch $@ ; \
48         fi
50 # Autogenerated text docs
51 README: $(xml2txt_stylesheet) $(srcdir)/docs/gnu/README.xml
52         $(xml2txt_command) $(srcdir)/docs/gnu/README.xml
54 NEWS: $(xml2txt_stylesheet) $(srcdir)/docs/gnu/NEWS.xml
55         $(xml2txt_command) $(srcdir)/docs/gnu/NEWS.xml
57 TODO: $(xml2txt_stylesheet) $(srcdir)/docs/gnu/TODO.xml
58         $(xml2txt_command) $(srcdir)/docs/gnu/TODO.xml
60 CONTRIBUTING: $(xml2txt_stylesheet) $(srcdir)/docs/gnu/CONTRIBUTING.xml
61         $(xml2txt_command) $(srcdir)/docs/gnu/CONTRIBUTING.xml