>> If there is at least one blank (on a german Windows the home
>> directory is called "c:\Dokumente und Einstellungen\<username>")
>> searching does not work.

I suggest that you contact the help-m...@gnu.org mailing list,
providing a minimal (trivial) example demonstrating the VPATH problem.
Either this is a bug in the Windows port of GNU make, or they know a
solution.

>> # The pattern rule to create PDF and MIDI files from a LY input
>> # file.  The .pdf output files are created in the `PDF'
>> # subdirectory, and the .midi files are put into the `MIDI'
>> # subdirectory.
>> %.pdf %.midi: %.ly
>>     $(LILY_CMD) $<
>>     if exist "$*.pdf" move /Y "$*.pdf" PDF/
>>     if exist "$*.mid" move /Y "$*.mid" MIDI/

Uuh, you are using `%.midi' in the rule but you are moving *.mid
files!  You should use `%.mid' too since this is what lilypond creates
if run on Windows, right?  The comment should be updated accordingly.


    Werner


_______________________________________________
lilypond-devel mailing list
lilypond-devel@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-devel

Reply via email to