]> git.donarmstrong.com Git - lilypond.git/blob - make/Files.make
release: 0.0.42.pre3
[lilypond.git] / make / Files.make
1 # list of c++ header files:
2
3 HHFILES = $(wildcard *.hh)
4 #
5
6 # list of c++ inline files:
7
8 INLFILES = $(wildcard *.inl)
9 #
10
11 # list of c++ template files:
12
13
14 TCCFILES = $(wildcard *.tcc)
15
16 #
17 # list of other source files:
18 #
19
20 EXTRA_SOURCE_FILES = $(wildcard *.y *.l)
21
22 #
23 PODFILES = $(wildcard *.pod)
24
25 CCFILES = $(wildcard *.cc)
26 MAKEFILES = $(wildcard *.make)
27
28 ALL_SOURCES=$(HHFILES) $(CCFILES) $(EXTRA_SOURCE_FILES) $(INLFILES) \
29         $(TCCFILES) $(PODFILES) $(MAKEFILES)
30
31 DEPFILES = $(wildcard $(depdir)/*.dep)
32
33 build = $(outdir)/.build
34
35 all-tag-sources=$(CCFILES) $(HHFILES)