[AdgArrowStyle] Hidden private struct
[adg.git] / Makefile.am
blobdee1d239eb3d0652e56a53645421fc8c66f76cae
1 ## Process this file with automake to produce Makefile.in.
3 XSLTPROC=               `which xsltproc`
5 ACLOCAL_AMFLAGS=        -I m4
7 BUILT_SOURCES=          ChangeLog \
8                         README \
9                         NEWS \
10                         TODO
12 EXTRA_DIST=             ABOUT-NLS \
13                         AUTHORS \
14                         config.rpath \
15                         COPYING \
16                         ChangeLog-0.2.1 \
17                         INSTALL \
18                         m4/ChangeLog \
19                         adg.doap \
20                         $(BUILT_SOURCES)
22 SUBDIRS=                cpml \
23                         adg \
24                         demo \
25                         docs \
26                         po
28 # Creating ChangeLog files from git log:
29 # idea stolen from cairo/build/Makefile.am.changelog
30 ChangeLog:
31         @echo Updating $@
32         @if test -d "$(srcdir)/.git"; then \
33           (cd "$(srcdir)" && git log --stat > $@); \
34         else \
35           echo A git checkout is required to generate $@ >&2; \
36         fi
38 # Update the README from the xml version
39 README: $(srcdir)/docs/gnu/docbook2txt.xsl $(srcdir)/docs/gnu/README.xml
40         @echo Updating $@
41         @if test -x $(XSLTPROC); then \
42           $(XSLTPROC) -o $@ $^; \
43         else \
44           echo libxslt-1.0.19 or later is required in order to generate $@; \
45         fi
47 # Update the NEWS from the xml version
48 NEWS: $(srcdir)/docs/gnu/docbook2txt.xsl $(srcdir)/docs/gnu/NEWS.xml
49         @echo Updating $@
50         @if test -x $(XSLTPROC); then \
51           $(XSLTPROC) -o $@ $^; \
52         else \
53           echo libxslt-1.0.19 or later is required in order to generate $@; \
54         fi
56 # Update the TODO from the xml version
57 TODO: $(srcdir)/docs/gnu/docbook2txt.xsl $(srcdir)/docs/gnu/TODO.xml
58         @echo Updating $@
59         @if test -x $(XSLTPROC); then \
60           $(XSLTPROC) -o $@ $^; \
61         else \
62           echo libxslt-1.0.19 or later is required in order to generate $@; \
63         fi