blob: d5464bf1479ea5e1a91495acc3b38dea17156f4d (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# title makefile for lilypond
# file lily/Makefile
depth = ..
NAME = lilypond
SUBDIRS = include
EXTRA_DIST_FILES = VERSION
MODULE_LIBS=$(depth)/lib $(depth)/flower
MAKEFILES=C++ Executable
include $(depth)/make/Stepmake.make
# force these: Make can't know these have to be generated in advance
my-lily-lexer.cc: $(outdir)/parser.hh
$(outdir)/lexer.o: $(outdir)/parser.hh
$(outdir)/lily-version.o: $(outdir)/version.hh
$(outdir)/main.o: $(outdir)/BLURB.hh $(outdir)/COPERTINA.hh $(outdir)/FLAPTEKST.hh
# ugh . -> $(outdir)
VERSION: $(depth)/VERSION
cp $< $@
|