-
Notifications
You must be signed in to change notification settings - Fork 4
/
Makefile.am
23 lines (19 loc) · 1011 Bytes
/
Makefile.am
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
ACLOCAL_AMFLAGS = -I config/m4
MAINTAINERCLEANFILES = Makefile.in aclocal.m4 configure
EXTRA_DIST = doc
SUBDIRS = src test app/src
docs:
cd doc/library/ja/;make latexpdfja; make html
cd doc/library/en/;make latexpdfja; make html
cd doc/software/ja/;make latexpdfja; make html
cd doc/software/en/;make latexpdfja; make html
pngdocs:
cd doc/library/ja/;sed -i -e "s/mathjax/pngmath/g" conf.py; make latexpdfja; make html
cd doc/library/en/;sed -i -e "s/mathjax/pngmath/g" conf.py; make latexpdfja; make html
cd doc/software/ja/;sed -i -e "s/mathjax/pngmath/g" conf.py; make latexpdfja; make html
cd doc/software/en/;sed -i -e "s/mathjax/pngmath/g" conf.py; make latexpdfja; make html
docs-clean:
cd doc/library/ja/; make clean; sed -i -e "s/pngmath/mathjax/g" conf.py
cd doc/library/en/; make clean; sed -i -e "s/pngmath/mathjax/g" conf.py
cd doc/software/ja/; make clean; sed -i -e "s/pngmath/mathjax/g" conf.py
cd doc/software/en/; make clean; sed -i -e "s/pngmath/mathjax/g" conf.py