[CpmlPair] Compute curve_at using the canonical function
[adg.git] / Makefile.am
blob2331e18061b718ae989ca0ee0c5c993483a662cb
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                         $(BUILT_SOURCES)
21 SUBDIRS=                cpml \
22                         adg \
23                         demo \
24                         docs \
25                         po
27 # Creating ChangeLog files from git log:
28 # idea stolen from cairo/build/Makefile.am.changelog
29 ChangeLog:
30         @echo Updating $@
31         @if test -d "$(srcdir)/.git"; then \
32           (cd "$(srcdir)" && git log --stat > $@); \
33         else \
34           echo A git checkout is required to generate $@ >&2; \
35         fi
37 # Update the README from the xml version
38 README: $(srcdir)/docs/gnu/docbook2txt.xsl $(srcdir)/docs/gnu/README.xml
39         @echo Updating $@
40         @if test -x $(XSLTPROC); then \
41           $(XSLTPROC) -o $@ $^; \
42         else \
43           echo libxslt-1.0.19 or later is required in order to generate $@; \
44         fi
46 # Update the NEWS from the xml version
47 NEWS: $(srcdir)/docs/gnu/docbook2txt.xsl $(srcdir)/docs/gnu/NEWS.xml
48         @echo Updating $@
49         @if test -x $(XSLTPROC); then \
50           $(XSLTPROC) -o $@ $^; \
51         else \
52           echo libxslt-1.0.19 or later is required in order to generate $@; \
53         fi
55 # Update the TODO from the xml version
56 TODO: $(srcdir)/docs/gnu/docbook2txt.xsl $(srcdir)/docs/gnu/TODO.xml
57         @echo Updating $@
58         @if test -x $(XSLTPROC); then \
59           $(XSLTPROC) -o $@ $^; \
60         else \
61           echo libxslt-1.0.19 or later is required in order to generate $@; \
62         fi