File: SConscript

package info (click to toggle)
lilypond 2.8.7-3
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 13,932 kB
  • ctags: 9,802
  • sloc: cpp: 57,785; lisp: 18,180; python: 11,665; sh: 3,195; yacc: 2,392; lex: 982; perl: 373; ansic: 316; makefile: 131
file content (15 lines) | stat: -rw-r--r-- 440 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# -*-python-*-

Import ('env', 'install', 'src_glob')
sources = src_glob ('*.vim') + ['lilypond-words.vim']

e = env.Copy ()
a = '$PYTHON $srcdir/buildscripts/lilypond-words.py --words --vim --dir=${TARGET.dir}'
e.Command ('lilypond-words.vim',
	   ['#/lily/lily-lexer.cc',
	    '#/buildscripts/lilypond-words.py',
	    '#/scm/markup.scm',
	    '#/ly/engraver-init.ly',],
	   a)

install (sources, env['sharedir_package_version'] + '/vim')