[docs] Updated TODO.xml
[adg.git] / Makefile.am
blob418a803cf922018d47e5a2c063dced9c596c5d48
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-pango \
13                                 --enable-gtk2 \
14                                 --enable-gtk-doc \
15                                 --enable-glade \
16                                 --enable-test-framework
18 BUILT_SOURCES=                  ChangeLog \
19                                 README \
20                                 NEWS \
21                                 TODO \
22                                 CONTRIBUTING \
23                                 HACKING
25 EXTRA_DIST=                     COPYING \
26                                 ChangeLog-0.2.1 \
27                                 INSTALL \
28                                 THANKS \
29                                 adg.doap \
30                                 build/configure-mingw \
31                                 $(BUILT_SOURCES)
32 CLEANFILES=                     test-report.xml \
33                                 test-report.html \
34                                 perf-report.xml \
35                                 perf-report.html \
36                                 full-report.xml \
37                                 full-report.html
39 SUBDIRS=                        src
40 if HAVE_GTK2
41 SUBDIRS+=                       demo
42 endif
43 SUBDIRS+=                       po \
44                                 po-properties \
45                                 docs
48 # Creating ChangeLog files from git log:
49 # idea stolen from cairo/build/Makefile.am.changelog
50 ChangeLog:
51         $(MSG_GEN) ; \
52         if test -d "$(srcdir)/.git"; then \
53           ( cd "$(srcdir)" && git log --stat > $@ ) ; \
54         else \
55           echo ' *WARN  A git checkout is required to generate $@' ; \
56           touch $@ ; \
57         fi
59 # Autogenerated text docs
60 README: $(xml2txt_stylesheet) $(srcdir)/docs/gnu/README.xml
61         $(xml2txt_command) $(srcdir)/docs/gnu/README.xml
63 NEWS: $(xml2txt_stylesheet) $(srcdir)/docs/gnu/NEWS.xml
64         $(xml2txt_command) $(srcdir)/docs/gnu/NEWS.xml
66 TODO: $(xml2txt_stylesheet) $(srcdir)/docs/gnu/TODO.xml
67         $(xml2txt_command) $(srcdir)/docs/gnu/TODO.xml
69 CONTRIBUTING: $(xml2txt_stylesheet) $(srcdir)/docs/gnu/CONTRIBUTING.xml
70         $(xml2txt_command) $(srcdir)/docs/gnu/CONTRIBUTING.xml
72 HACKING: $(xml2txt_stylesheet) $(srcdir)/docs/gnu/HACKING.xml
73         $(xml2txt_command) $(srcdir)/docs/gnu/HACKING.xml