diff options
author | Han-Wen Nienhuys <hanwen@xs4all.nl> | 1998-08-24 12:55:09 +0200 |
---|---|---|
committer | Han-Wen Nienhuys <hanwen@xs4all.nl> | 1998-08-24 12:55:09 +0200 |
commit | a41bc3e06fca46daa875419b5dc00dd958e1fde0 (patch) | |
tree | b3d22bc68eac28a5afc6c25a900c675b3b38d53f /make/mutopia-vars.make | |
parent | e623ae7eca4ae92d78387cddf7327e03148a70bb (diff) |
release: 1.0.4
Diffstat (limited to 'make/mutopia-vars.make')
-rw-r--r-- | make/mutopia-vars.make | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/make/mutopia-vars.make b/make/mutopia-vars.make new file mode 100644 index 0000000000..92ef7c0e5a --- /dev/null +++ b/make/mutopia-vars.make @@ -0,0 +1,27 @@ + +# UGH UGH +include $(make-dir)/lilypond-vars.make + +FLY_FILES = $(wildcard *.fly) +LY_FILES = $(wildcard *.ly) +M4_FILES = $(wildcard *.m4) +LYM4_FILES = $(wildcard *.lym4) +EXTRA_DIST_FILES += $(FLY_FILES) $(LY_FILES) $(M4_FILES) $(LYM4_FILES) + +# WWW.make + +ly_examples=$(addprefix $(outdir)/, $(addsuffix .ly.txt, $(examples))) +fly_examples=$(addprefix $(outdir)/, $(addsuffix .fly.txt, $(flexamples))) + +all_examples=$(flexamples) $(examples) + +ps_examples=$(addprefix $(outdir)/, $(addsuffix .ps.gz, $(all_examples))) +gif_examples=$(addprefix $(outdir)/, $(addsuffix .gif, $(all_examples))) + +html_subdirs=$(addprefix --subdirs ,$(SUBDIRS)) + + +name-stem= $(notdir $(basename $<)) + +OUT_FILES = $(addprefix $(outdir)/,$(M4_FILES:%.m4=%)) \ + $(addprefix $(outdir)/,$(LYM4_FILES:%.lym4=%.ly)) |