Re: Writing makefile for simple project

2011-06-25 Thread Dean Herington
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

Re: Writing makefile for simple project

2011-06-25 Thread Jonathan Kulp
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 $

Re: Writing makefile for simple project

2011-06-25 Thread Jesse Engle
> 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 "

Re: Writing makefile for simple project

2011-06-25 Thread Jonathan Kulp
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 > |-- |-- .

Writing makefile for simple project

2011-06-25 Thread Jesse Engle
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