]> git.donarmstrong.com Git - lilypond.git/blob - make/Files.make
release: 0.0.46.jcn1
[lilypond.git] / make / Files.make
1 # project  LilyPond -- the musical typesetter
2 # title    automatic file variables
3 # file     make/Files.make
4 # abstract mmm, brr.
5 #          
6 #
7 # Copyright (c) 1997 by    
8 #       Jan Nieuwenhuizen <jan@digicash.com>
9 #       Han-Wen Nienhuys <hanwen@stack.nl>
10
11 # list of c++ header files:
12
13 HHFILES = $(wildcard *.hh)
14 #
15
16 # list of c++ inline files:
17
18 INLFILES = $(wildcard *.icc)
19 #
20
21 # list of c++ template files:
22
23 TCCFILES = $(wildcard *.tcc)
24 #
25
26 # list plain c++ source files:
27
28 CCFILES = $(wildcard *.cc)
29 #
30
31 # list of other source files:
32 #
33 EXTRA_SOURCE_FILES = $(wildcard *.y *.l)
34 #
35
36 PODFILES = $(wildcard *.pod)
37
38 MAKEFILES = $(wildcard *.make)
39
40 ALL_SOURCES=$(HHFILES) $(CCFILES) $(EXTRA_SOURCE_FILES) $(INLFILES) \
41         $(TCCFILES) $(PODFILES) $(MAKEFILES)
42
43 DEPFILES = $(wildcard $(depdir)/*.dep)
44
45 build = $(outdir)/.build
46
47 all-tag-sources=$(CCFILES) $(HHFILES)