]> git.donarmstrong.com Git - lilypond.git/blob - make/Files.make
31cdf0e205f2bf2a88b228447708208cc3da3d28
[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 *.icc)
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 *.yy *.ll)
21
22 #
23 PODFILES = $(wildcard *.pod)
24 OUTPODFILES = $(addprefix $(outdir)/,$(PODFILES))
25
26
27 CCFILES = $(wildcard *.cc)
28 MAKEFILES = $(wildcard *.make)
29
30 ALL_SOURCES=$(HHFILES) $(CCFILES) $(EXTRA_SOURCE_FILES) $(INLFILES) \
31         $(TCCFILES) $(PODFILES) $(MAKEFILES)
32
33 DEPFILES = $(wildcard $(depdir)/*.dep)
34
35
36 all-tag-sources=$(CCFILES) $(HHFILES) $(TCCFILES)