mirror of
https://github.com/aria2/aria2.git
synced 2025-02-26 08:22:11 +00:00
rst2html is required to produce README.html from README.rst. We include generated README.html to distribution. And rst2html is not required when compiling sources in distribution and always README.html is available.
24 lines
596 B
Makefile
24 lines
596 B
Makefile
SUBDIRS = po lib deps src doc test
|
|
|
|
ACLOCAL_AMFLAGS = -I m4 --install
|
|
RST2HTML = @RST2HTML@
|
|
|
|
EXTRA_DIST = config.rpath \
|
|
script-helper \
|
|
makerelease \
|
|
mingw-config mingw-release mingw-build-memo \
|
|
android-config android-make \
|
|
makerelease-osx.mk osx-package/DS_Store osx-package/etc/paths.d/aria2c osx-package/etc/manpaths.d/aria2 \
|
|
examples/libaria2ex.cc examples/libaria2wx.cc
|
|
|
|
dist_doc_DATA = README README.rst README.html
|
|
|
|
if HAVE_RST2HTML
|
|
|
|
README.html: README.rst
|
|
$(RST2HTML) $< > README.html
|
|
endif # HAVE_RST2HTML
|
|
|
|
dist_noinst_DATA = LICENSE.OpenSSL
|
|
|