1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81
|
man_MANS = \
sphinx_cepview.1 \
sphinx_cont_seg.1 \
sphinx_fe.1 \
sphinx_lm_convert.1 \
sphinx_lm_eval.1 \
sphinx_lm_sort.1 \
sphinx_pitch.1
EXTRA_DIST = \
args2man.pl \
doxy2swig.py \
sphinx_cepview.1.in \
sphinx_cont_seg.1.in \
sphinx_fe.1.in \
sphinx_pitch.1.in \
sphinx_cepview.1 \
sphinx_cont_seg.1 \
sphinx_fe.1 \
sphinx_lm_convert.1 \
sphinx_lm_eval.1 \
sphinx_lm_sort.1 \
sphinx_pitch.1
if BUILD_SWIG
SWIG_DOC = pydoc.i
pydoc.i: html/index.html
$(PYTHON) $(srcdir)/doxy2swig.py -n xml/index.xml pydoc.i
endif
if BUILD_DOXYGEN
all-local: html/index.html $(SWIG_DOC)
endif
headers = \
$(top_srcdir)/include/sphinxbase/ad.h \
$(top_srcdir)/include/sphinxbase/agc.h \
$(top_srcdir)/include/sphinxbase/bio.h \
$(top_srcdir)/include/sphinxbase/bitvec.h \
$(top_srcdir)/include/sphinxbase/byteorder.h \
$(top_srcdir)/include/sphinxbase/case.h \
$(top_srcdir)/include/sphinxbase/ckd_alloc.h \
$(top_srcdir)/include/sphinxbase/clapack_lite.h \
$(top_srcdir)/include/sphinxbase/cmd_ln.h \
$(top_srcdir)/include/sphinxbase/cmn.h \
$(top_srcdir)/include/sphinxbase/err.h \
$(top_srcdir)/include/sphinxbase/f2c.h \
$(top_srcdir)/include/sphinxbase/fe.h \
$(top_srcdir)/include/sphinxbase/feat.h \
$(top_srcdir)/include/sphinxbase/filename.h \
$(top_srcdir)/include/sphinxbase/fixpoint.h \
$(top_srcdir)/include/sphinxbase/fsg_model.h \
$(top_srcdir)/include/sphinxbase/genrand.h \
$(top_srcdir)/include/sphinxbase/glist.h \
$(top_srcdir)/include/sphinxbase/hash_table.h \
$(top_srcdir)/include/sphinxbase/heap.h \
$(top_srcdir)/include/sphinxbase/jsgf.h \
$(top_srcdir)/include/sphinxbase/listelem_alloc.h \
$(top_srcdir)/include/sphinxbase/logmath.h \
$(top_srcdir)/include/sphinxbase/matrix.h \
$(top_srcdir)/include/sphinxbase/mmio.h \
$(top_srcdir)/include/sphinxbase/mulaw.h \
$(top_srcdir)/include/sphinxbase/ngram_model.h \
$(top_srcdir)/include/sphinxbase/pio.h \
$(top_srcdir)/include/sphinxbase/prim_type.h \
$(top_srcdir)/include/sphinxbase/profile.h \
$(top_srcdir)/include/sphinxbase/sphinxbase_export.h \
$(top_srcdir)/include/sphinxbase/strfuncs.h \
$(top_srcdir)/include/sphinxbase/yin.h
latex/refman.pdf: doxyfile $(headers)
doxygen
$(MAKE) -C latex refman.pdf
html/index.html: doxyfile $(headers)
doxygen
clean-local:
-rm -rf html latex xml doxytags $(SWIG_DOC)
|