]> git.donarmstrong.com Git - lilypond.git/blob - make/Makefile
release: 0.1.7
[lilypond.git] / make / Makefile
1 #
2 # project  LilyPond -- the musical typesetter
3 # title    zucht
4 # file     make/Makefile 
5 #
6 # Copyright (c) 1997 by    
7 #       Jan Nieuwenhuizen <jan@digicash.com>
8 #       Han-Wen Nienhuys <hanwen@stack.nl>
9 #               ...your sort order here, or how to comment-out a comment
10
11 # subdir level:
12 #
13 depth = ..
14 #
15
16 # identify module:
17 #
18 NAME = make
19 SUBDIRS = debian
20
21 # list of distribution files:
22
23 # two outdir files are distributed, since they make sense to have without running 
24 # configure and make.
25 EXTRA_DISTFILES = Configure_variables.make.in lilypond.spec.in Toplevel.make.in \
26         lilypond.lsm.in $(outdir)/lilypond.spec $(outdir)/lilypond.lsm
27
28 #
29
30 # generic variables:
31 #
32 include ./$(depth)/make/Variables.make
33 include ./$(depth)/make/Files.make 
34 #
35
36 # generic targets and rules:
37 #
38 include ./$(depth)/make/Targets.make
39 include ./$(depth)/make/Rules.make
40 #
41
42 spec: $(outdir)/lilypond.spec
43
44 rpmdocs=$(addprefix Documentation/out/, $(notdir $(shell ls $(depth)/Documentation/$(outdir)/*.text)))\
45         BUGS TODO NEWS DEDICATION ANNOUNCE README
46 rpmmudocs=$(addprefix Documentation/, $(notdir $(shell ls $(depth)/Documentation/*.doc)))
47 rpmdvis=$(rpmmudocs:.doc=.dvi)
48 rpmexamples= $(addprefix input/, $(notdir $(shell ls $(depth)/input/*.{ly,tex})))
49
50
51 date = $(shell date '+%d%b%y'|tr a-z A-Z)
52 sed-version= sed 's!@TOPLEVEL_VERSION@!${TOPLEVEL_VERSION}!g'
53 sed-date=sed 's!@DATE@!${date}!g'
54 sed-examples = sed 's!@EXAMPLE_LYS@!${rpmexamples} ${rpmmudocs}!g'
55 sed-docs=sed 's!@TEXT_DOCS@!${rpmdocs}!g'
56
57 $(outdir)/lilypond.spec: lilypond.spec.in $(depth)/VERSION
58         cat $< | $(sed-version) | $(sed-docs) | $(sed-examples) > $@
59
60 $(outdir)/lilypond.lsm: lilypond.lsm.in $(depth)/VERSION
61         cat $< | $(sed-version) | $(sed-date) > $@