lilypond-user
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Writing makefile for simple project


From: Jesse Engle
Subject: Re: Writing makefile for simple project
Date: Sat, 25 Jun 2011 20:25:48 -0400

> Can you post the text of your makefile so we can see what you've tried so far?

PIECE=ritual
INCDIR=include
INCS=$(INCDIR)/defs.ly \
     $(INCDIR)/three-stroke-ruff.ily \
     $(INCDIR)/single-drag.ily

$(PIECE).pdf: main.ly $(INCS)
        lilypond $(OPTS) -o $(PIECE) $<; \
        if test -f "$*.pdf"; then
                mv "$*.pdf" build; \
        fi

This outputs the following:

make: *** No rule to make target `include/defs.ly', needed by
`ritual.pdf'.  Stop.

I don't know whether or not to use the automatic variables defined by
make, and I'm also unsure about using the VPATH variable... Also, do I
need to specify the .midi target separately? Help! :) ...Jesse



reply via email to

[Prev in Thread] Current Thread [Next in Thread]