]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/user/SConscript
Fix some bugs in the dynamic engraver and PostScript backend
[lilypond.git] / Documentation / user / SConscript
index 5ef1efdd3d0ff17f2b797768f224a7d9e14d56e9..bbdf7aec771157c230d3a1d79bc4ad11bc647223 100644 (file)
@@ -3,9 +3,9 @@
 import os
 import string
 
-Import ('env', 'base_glob', 'src_glob')
+Import ('env', 'base_glob')
 tely = base_glob ('*.tely')
-png = src_glob ('*.png') + map (env.EPS2PNG, base_glob ('*.eps'))
+png = base_glob ('*.png')
 
 # We need lily and mf to build these.
 env.Depends ('lilypond.texi', ['#/lily', '#/mf', '#/python'])
@@ -13,16 +13,13 @@ env.Depends ('music-glossary.texi', ['#/lily', '#/mf', '#/python'])
 
 env.Depends ('lilypond.texi', 'lilypond-internals.texi')
 
-eps = src_glob ('*.eps') + map (env.PNG2EPS, base_glob ('*.png'))
-env.Depends ('lilypond.texi', eps + png)
+eps = map (env.PNG2EPS, png)
+env.Depends ('lilypond.texi', eps)
 
-lilypond_book_flags = '''--format=$LILYPOND_BOOK_FORMAT --process="lilypond -I$srcdir/input/manual/ $__verbose --backend=eps --formats=ps,png --header=texidoc -dcheck-internal-types -ddump-signatures -danti-alias-factor=2 -dgs-load-fonts" '''
 e = env.Copy (
-#      LILYPOND_BOOK_FLAGS = '''--process="lilypond --backend=eps --formats=ps,png --header=texidoc -I#/input/manual -e '(ly:set-option (quote internal-type-checking) \#t)'"''',
-       LILYPOND_BOOK_FLAGS = lilypond_book_flags,
+       LILYPOND_BOOK_FLAGS = '''--process="lilypond --backend=eps --formats=ps,png --header=texidoc -I#/input/test -e '(ly:set-option (quote internal-type-checking) \#t)'"''',
        __verbose = ' --verbose',
        GENERATE_DOCUMENTATION = '$srcdir/ly/generate-documentation',
-       ## TEXI2DVI_FLAGS = ['-I#Documentation/user'],
        )
 
 e.Command ('lilypond-internals.texi', ['#/lily', '#/mf', '#/python'],