ajout makefile pour partition concerto_italien.ly
2 targets. all: release, et debug pour le debug
This commit is contained in:
parent
79da869080
commit
0b2e6771bc
|
@ -0,0 +1,20 @@
|
|||
LILY=/usr/bin/lilypond
|
||||
LFLAGS=
|
||||
|
||||
# target
|
||||
help: h
|
||||
all: LFLAGS+=-dno-point-and-click
|
||||
all: concerto_italien.pdf
|
||||
debug: concerto_italien.pdf
|
||||
|
||||
# rules
|
||||
concerto_italien.pdf: concerto_italien.ly
|
||||
${LILY} ${LFLAGS} concerto_italien.ly
|
||||
|
||||
# aide
|
||||
h:
|
||||
: "make all pour realease. make debug pour debug"
|
||||
|
||||
# clean
|
||||
clean:
|
||||
rm -f ./*.pdf ./*.midi
|
Loading…
Reference in New Issue