view Makefile @ 2:b1aac55d2864

Parameterise page size add some more debugging. Seems to work OK for rests etc
author Daniel O'Connor <darius@dons.net.au>
date Sun, 06 Mar 2016 22:43:28 +1030
parents 0773354c7428
children 5f4c21bb5140
line wrap: on
line source

.SUFFIXES: .mup .ps .midi

MUP=	mup
RM=	rm -f
MOPTS=	
MVOPTS=	
MPOPTS=	-DPIANO -DNOVOICE

all: test.midi test.ps
#all: test.ps test-piano.ps test.midi

test-piano.ps: test.mup
	$(MUP) $(MOPTS) $(MPOPTS) $> > $@

clean:
	$(RM) test.ps test-piano.ps test.midi

# Generic rules
.mup.midi:
	$(MUP) -m $@ $>

.mup.ps:
	$(MUP) $(MOPTS) $(MVOPTS) $> > $@