It looks like your file is include/defs.ily but you've spelled it
include/defs.ly in INCS.
At 8:25 PM -0400 6/25/11, Jesse Engle wrote:
> 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-s
On Sat, Jun 25, 2011 at 7:25 PM, Jesse Engle wrote:
>> 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 $
> 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 "
On Sat, Jun 25, 2011 at 7:12 PM, Jesse Engle wrote:
> Hello,
>
> I'm trying to write a makefile for a simple project with the following
> directory layout:
>
> ritual/
> |-- Makefile
> |-- build/
> |-- include
> |-- |-- defs.ily
> |-- |-- three-stroke-ruff.ily
> |-- |-- single-drag.ily
> |-- |-- .
Hello,
I'm trying to write a makefile for a simple project with the following
directory layout:
ritual/
|-- Makefile
|-- build/
|-- include
|-- |-- defs.ily
|-- |-- three-stroke-ruff.ily
|-- |-- single-drag.ily
|-- |-- ...
|-- main.ly
I'd like to have the makefile rebuild the project and place t