From: fred Date: Tue, 18 Mar 1997 22:17:05 +0000 (+0000) Subject: lilypond-0.0.43 X-Git-Tag: release/1.5.59~6197 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=2177da4785d47668dd47f5bb1ef0192803efa6a7;p=lilypond.git lilypond-0.0.43 --- diff --git a/make/Files.make b/make/Files.make new file mode 100644 index 0000000000..ba1d2e3762 --- /dev/null +++ b/make/Files.make @@ -0,0 +1,35 @@ +# list of c++ header files: +# +HHFILES = $(wildcard *.hh) +# + +# list of c++ inline files: +# +INLFILES = $(wildcard *.inl) +# + +# list of c++ template files: +# + +TCCFILES = $(wildcard *.tcc) + +# +# list of other source files: +# + +EXTRA_SOURCE_FILES = $(wildcard *.y *.l) + +# +PODFILES = $(wildcard *.pod) + +CCFILES = $(wildcard *.cc) +MAKEFILES = $(wildcard *.make) + +ALL_SOURCES=$(HHFILES) $(CCFILES) $(EXTRA_SOURCE_FILES) $(INLFILES) \ + $(TCCFILES) $(PODFILES) $(MAKEFILES) + +DEPFILES = $(wildcard $(depdir)/*.dep) + +build = $(outdir)/.build + +all-tag-sources=$(CCFILES) $(HHFILES)