Re: DOCS: include a sample "Makefile"?

2009-05-16 Thread Peter Chubb
> "Jonathan" == Jonathan Kulp writes: Jonathan> Werner LEMBERG wrote: >>> parts: $(LILY_CMD) $(wildcard Parts/*.ly) mv *.pdf $(OUTDIR)/ >> `wildcard' is a GNU extension. It can be circumvented with shell >> commands, however, I suggest to name the part files explicitly. Jonathan> Pity. In

Re: Using .ily for included lilypond files

2009-05-16 Thread Jonathan Kulp
Graham Percival wrote: I really meant things like spanner-init.ly : fundamental lilypond .ly files which must be loaded. But yes, it should also be done to things like english.ly. I was only thinking about input files holding all the notes and macros. Should the language files and old st

Re: Using .ily for included lilypond files

2009-05-16 Thread Graham Percival
On Sat, May 16, 2009 at 06:12:28PM -0500, Jonathan Kulp wrote: > Graham Percival wrote: >> In the large "DOC: Makefile" thread that nobody new is going to >> read, there was a proposal to use .ily to indicate "setup" >> lilypond files. >> > by "setup" files do you mean stuff like "english.ly"? I r

Re: Using .ily for included lilypond files

2009-05-16 Thread Jonathan Kulp
Graham Percival wrote: In the large "DOC: Makefile" thread that nobody new is going to read, there was a proposal to use .ily to indicate "setup" lilypond files. by "setup" files do you mean stuff like "english.ly"? I was only thinking about input files holding all the notes and macros. Shoul

RE: creating a stringHarmonic function

2009-05-16 Thread Kieren MacMillan
Hey Graham, > No help on the technical issues, but as a string player, I > generally see harmonics as only two notes (the bottom two). The > first time I saw three notes was in a Stravinski orchestral part, > and it took me a moment to figure out what it was. > > Could you also invent a two-not

Re: convert-ly seems to think it's musicXML2ly

2009-05-16 Thread Francisco Vila
2009/5/16 Francisco Vila : > but > > $ ls -l /usr/local/bin/convert-ly > lrwxrwxrwx 1 root root 38 2009-04-29 13:20 /usr/local/bin/convert-ly > -> /usr/local/bin/lilypond-wrapper.python also :/usr/local/bin$ convert-ly Usage: musicxml2ly [OPTION]... FILE.xml :/usr/local/bin$ /usr/local/bin/lilyp

convert-ly seems to think it's musicXML2ly

2009-05-16 Thread Francisco Vila
Hello, convert-ly used to work perfectly until I have done make install of latest git version of lilypond. Now the command convert-ly parsifal.ly gives the following output: Reading MusicXML from holst-marte.ly ... Traceback (most recent call last): File "/usr/local/bin/convert-ly", line 2

Re: DOCS: include a sample "Makefile"?

2009-05-16 Thread Werner LEMBERG
> Werner's point about multiple invocations of lilypond is very valid, > but on a multi-processor machine my technique will use all > processors. It'll probably be a bit slower on a uni-processor, > though. This is getting error prone. If you want to support multi-processor engines, just write

Re: DOCS: include a sample "Makefile"?

2009-05-16 Thread Anthony W. Youngman
In message <4a0d9dd6.4070...@gmail.com>, Jonathan Kulp writes Anthony W. Youngman wrote: parts: for LILYFILE in Parts/*.ly ; do $(LILY_CMD) "$$LILYFILE" ; done mv *.pdf $(OUTDIR)/ It works exactly as it did with the GNU wildcard, except that multiple files can't be compiled at onc

Re: [DOC PATCH]: add .ily extension to filetype.vim and editor support

2009-05-16 Thread Patrick McCarty
On Sat, May 16, 2009 at 12:03:34AM -0500, Jonathan Kulp wrote: > Patrick McCarty wrote: >> On Fri, May 15, 2009 at 02:39:26PM -0500, Jonathan Kulp wrote: >>> Here's a patch to add the .ily extension to the filetype.vim file in the >>> sources and to the Application Usage 2.2.2 "Vim mode" sample fil