diff options
author | Julien Rioux <jrioux@physics.utoronto.ca> | 2012-01-22 10:36:31 -0500 |
---|---|---|
committer | Julien Rioux <jrioux@physics.utoronto.ca> | 2012-02-13 09:07:42 -0500 |
commit | d62868877468728760bddc29ebb8ba174d77ede1 (patch) | |
tree | 8927ba99c3140da1f10e61a966916f1467825f9c /input | |
parent | 6a1f558672bd534fdadc7ae559c8711c0ccb21ea (diff) |
Build: Generate info and pdf output from -book regtests.
Allow to catch any problems in either toolchains:
lilypond-book -> makeinfo
lilypond-book -> texi2pdf
Diffstat (limited to 'input')
-rw-r--r-- | input/regression/lilypond-book/GNUmakefile | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/input/regression/lilypond-book/GNUmakefile b/input/regression/lilypond-book/GNUmakefile index a1b4dd6b62..d5d4175c9a 100644 --- a/input/regression/lilypond-book/GNUmakefile +++ b/input/regression/lilypond-book/GNUmakefile @@ -16,6 +16,13 @@ EXTRA_DIST_FILES += $(call src-wildcard,*.ily) EXTRA_DIST_FILES += $(call src-wildcard,*.tely) EXTRA_DIST_FILES += $(call src-wildcard,*.itely) +OUT_TEXI_FILES += ${TEXI_FILES:%.texi=$(outdir)/%.info} +OUT_TEXI_FILES += ${TEXI_FILES:%.texi=$(outdir)/%.pdf} +OUT_TEXINFO_FILES += ${TEXINFO_FILES:%.texinfo=$(outdir)/%.info} +OUT_TEXINFO_FILES += ${TEXINFO_FILES:%.texinfo=$(outdir)/%.pdf} +OUT_TELY_FILES += ${TELY_FILES:%.tely=$(outdir)/%.info} +OUT_TELY_FILES += ${TELY_FILES:%.tely=$(outdir)/%.pdf} + XML_FILES = $(filter-out include%,$(call src-wildcard,*.xml)) local-test: $(OUT_FILES) |