> 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

_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to