lilypond-1.3.145
[lilypond.git] / make / Files.make
blob31cdf0e205f2bf2a88b228447708208cc3da3d28
1 # list of c++ header files:
2 #
3 HHFILES = $(wildcard *.hh)
6 # list of c++ inline files:
7 #
8 INLFILES = $(wildcard *.icc)
11 # list of c++ template files:
14 TCCFILES = $(wildcard *.tcc)
17 # list of other source files:
20 EXTRA_SOURCE_FILES = $(wildcard *.yy *.ll)
23 PODFILES = $(wildcard *.pod)
24 OUTPODFILES = $(addprefix $(outdir)/,$(PODFILES))
27 CCFILES = $(wildcard *.cc)
28 MAKEFILES = $(wildcard *.make)
30 ALL_SOURCES=$(HHFILES) $(CCFILES) $(EXTRA_SOURCE_FILES) $(INLFILES) \
31 $(TCCFILES) $(PODFILES) $(MAKEFILES)
33 DEPFILES = $(wildcard $(depdir)/*.dep)
36 all-tag-sources=$(CCFILES) $(HHFILES) $(TCCFILES)