]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-0.0.43
authorfred <fred>
Tue, 18 Mar 1997 22:17:05 +0000 (22:17 +0000)
committerfred <fred>
Tue, 18 Mar 1997 22:17:05 +0000 (22:17 +0000)
make/Files.make [new file with mode: 0644]

diff --git a/make/Files.make b/make/Files.make
new file mode 100644 (file)
index 0000000..ba1d2e3
--- /dev/null
@@ -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)