]> git.donarmstrong.com Git - lilypond.git/blob - GNUmakefile.in
strip all lily-XXXX PDF files.
[lilypond.git] / GNUmakefile.in
1 # -*-Makefile-*-
2
3 depth = .
4
5 SUBDIRS = buildscripts python scripts \
6         flower lily \
7         mf ly \
8         tex ps scm \
9         po make \
10         elisp vim \
11         input \
12         stepmake $(documentation-dir)
13
14
15 ## this convoluted construction is necessary, since we don't know the
16 ## value of DOCUMENTATION here.
17 documentation-dir=$(if $(findstring no,$(DOCUMENTATION)),,Documentation)
18
19 SCRIPTS = configure autogen.sh 
20 README_FILES = ChangeLog COPYING DEDICATION ROADMAP THANKS HACKING
21 TOPDOC_FILES=AUTHORS README INSTALL NEWS
22 TOPDOC_TXT_FILES = $(addprefix $(top-build-dir)/Documentation/topdocs/$(outdir)/,$(addsuffix .txt,$(TOPDOC_FILES)))
23 IN_FILES := $(call src-wildcard,*.in)
24
25 EXTRA_DIST_FILES = VERSION .cvsignore .gitignore SConstruct \
26   $(README_FILES) $(SCRIPTS) $(IN_FILES) 
27 INSTALLATION_DIR=$(local_lilypond_datadir)
28 INSTALLATION_FILES=$(config_make) VERSION
29
30 # bootstrap stepmake:
31 #
32 STEPMAKE_TEMPLATES=toplevel po install
33 include $(depth)/make/stepmake.make
34
35 local-dist: dist-toplevel-txt-files 
36
37 default: $(outdir)/VERSION
38
39 $(outdir)/VERSION: $(config_make)
40         echo $(TOPLEVEL_VERSION) > $@
41
42 dist-toplevel-txt-files:
43         -mkdir -p $(distdir)
44         ln $(TOPDOC_TXT_FILES) $(distdir)/
45         ln $(top-src-dir)/stepmake/aclocal.m4 $(distdir)/
46
47 doc: 
48         $(MAKE) -C Documentation
49
50 install-WWW:
51         -$(INSTALL) -m 755 -d $(DESTDIR)$(webdir)
52         cp -a $(outdir)/web-root/ $(DESTDIR)$(webdir)/
53
54         $(MAKE) -C Documentation/user local-install-WWW
55         $(MAKE) -C Documentation/user install-info
56
57 install-help2man:
58         $(MAKE) -C scripts man install-help2man
59         $(MAKE) -C lily man install-help2man
60
61 web-install:
62         $(MAKE) out=www install-WWW
63
64 uninstall-WWW:
65         echo TODO
66
67 web-uninstall:
68         $(MAKE) out=www uninstall-WWW
69
70 local-install:
71         $(INSTALL) -d $(DESTDIR)$(local_lilypond_datadir)
72
73 final-install:
74         @true
75
76 web-ext = html midi pdf png txt ly signature
77
78 # For docball, issue `make web CONTENT_NEGOTIATION='
79 CONTENT_NEGOTIATION = --content-negotiation
80 footify = $(PYTHON) $(step-bindir)/add-html-footer.py --name $(PACKAGE_NAME) --version $(TOPLEVEL_VERSION) $(CONTENT_NEGOTIATION)
81 footifymail = MAILADDRESS='http://post.gmane.org/post.php?group=gmane.comp.gnu.lilypond.bugs'
82
83
84
85 local-WWW-post:
86 # need UTF8 setting in case this is hosted on a website. 
87         echo -e 'AddDefaultCharset utf-8\nAddCharset utf-8 .html\nAddCharset utf-8 .en\nAddCharset utf-8 .nl\nAddCharset utf-8 .txt\n' > $(top-build-dir)/.htaccess
88         $(PYTHON) $(buildscript-dir)/mutopia-index.py -o $(outdir)/examples.html input/
89         echo '<META HTTP-EQUIV="refresh" content="0;URL=Documentation/index.html">' > $(outdir)/index.html
90         echo '<html><body>Redirecting to the documentation index...</body></html>' >> $(outdir)/index.html
91
92         cd $(top-build-dir) && $(FIND) . -name '*.html' -print | $(footifymail) xargs $(footify)
93
94         cd $(top-build-dir) && find Documentation input \
95                 $(web-ext:%=-path '*/out-www/*.%' -or) -type l \
96                 | grep -v 'lily-[0-9a-f][0-9a-f]*.pdf' \
97                 | grep -v '/fr/' \
98                 > $(outdir)/weblist
99         ls $(outdir)/*.html >> $(outdir)/weblist
100
101 ## urg: this is too hairy, should write a python script to do this.
102
103 ## rewrite file names so we lose out-www
104         rm -rf $(outdir)/web-root/ 
105         mkdir $(outdir)/web-root/
106 ## urg slow.
107         cat $(outdir)/weblist | (cd $(top-build-dir); tar -cf-  -T- ) | \
108                 tar -C $(outdir)/web-root/ -xf -  
109         for dir in $(outdir)/web-root/ ; do  \
110                 cd $$dir && \
111                 for a in `find . -name out-www`; do \
112                         rsync -a  --link-dest $$a/ $$a/ $$a/.. ; \
113                         rm -rf $$a ; \
114                 done \
115         done
116         echo $(TOPLEVEL_VERSION) > $(outdir)/web-root/VERSION
117
118 tree-prefix = $(outdir)
119 tree-bin = $(tree-prefix)/bin
120 tree-lib = $(tree-prefix)/lib
121 tree-share = $(tree-prefix)/share
122 tree-share-prefix = $(tree-share)/lilypond/$(TOPLEVEL_VERSION)
123 tree-share-prefix-current = $(tree-share)/lilypond/current
124 tree-lib-prefix = $(tree-lib)/lilypond/$(TOPLEVEL_VERSION)
125 tree-lib-prefix-current = $(tree-lib)/lilypond/current
126
127 C_DIRS = flower lily
128 c-clean:
129         $(foreach i, $(C_DIRS), $(MAKE) -C $(i) clean &&) true
130
131 src-ext = c cc yy ll hh icc py scm tex ps texi itexi tely itely sh
132
133 web-clean:
134         $(MAKE) out=www clean
135         $(MAKE) $(tree-share-prefix)/lilypond-force
136
137 default: $(config_h) build-dir-setup 
138
139 build-dir-setup: $(tree-share-prefix)/lilypond-force
140
141 PO_FILES = $(call src-wildcard,$(src-depth)/po/*.po)
142 HELP_CATALOGS = $(PO_FILES:po/%.po=%)
143 CATALOGS = $(HELP_CATALOGS:lilypond=) 
144
145 $(tree-share-prefix)/lilypond-force link-tree: GNUmakefile
146 # Preparing LilyPond tree for build-dir exec
147         cd $(top-build-dir)/$(outbase) && rm -rf bin lib share
148         mkdir -p $(tree-bin)
149         mkdir -p $(tree-share-prefix)
150         ln -s $(TOPLEVEL_VERSION) $(tree-share-prefix-current)
151         mkdir -p $(tree-lib-prefix)
152         ln -s $(TOPLEVEL_VERSION) $(tree-lib-prefix-current)
153         mkdir -p $(tree-share-prefix)/dvips
154         mkdir -p $(tree-share-prefix)/elisp
155         mkdir -p $(tree-share-prefix)/fonts
156         mkdir -p $(tree-share-prefix)/fonts/otf
157         mkdir -p $(tree-share-prefix)/fonts/tfm
158         mkdir -p $(tree-share-prefix)/fonts/type1
159         mkdir -p $(tree-share-prefix)/fonts/svg
160         mkdir -p $(tree-share-prefix)/fonts/map
161         mkdir -p $(tree-share-prefix)/fonts/enc
162         mkdir -p $(tree-share-prefix)/tex
163         cd $(tree-bin) && \
164                 ln -sf ../../lily/$(outconfbase)/lilypond . && \
165                 for i in abc2ly convert-ly etf2ly lilypond-book lilypond-invoke-editor midi2ly musicxml2ly; \
166                         do ln -sf ../../scripts/$(outconfbase)/$$i . ; done
167         cd $(tree-lib-prefix) && \
168                 ln -s ../../../../python/$(outconfbase) python
169         cd $(tree-share-prefix) && \
170                 ln -s $(top-src-dir)/ly ly && \
171                 ln -s ../../../../mf mf && \
172                 ln -s $(top-src-dir)/ps && \
173                 ln -s ../../../../python/$(outconfbase) python && \
174                 ln -s $(top-src-dir)/scm && \
175                 ln -s $(top-src-dir)/scripts scripts
176         cd $(tree-share-prefix)/dvips && \
177                 ln -s ./../../../mf/$(outconfbase) mf-out && \
178                 ln -s $(top-src-dir)/ps
179         cd $(tree-share-prefix)/tex && \
180                 ln -s $(top-src-dir)/tex source && \
181                 ln -s ../../../../../tex/$(outconfbase) tex-out && \
182                 ln -s ../../../../../mf/$(outconfbase) mf-out
183
184         cd $(tree-share-prefix)/fonts && \
185                 ln -s $(top-src-dir)/mf source && \
186                 true
187         -cd $(tree-share-prefix)/elisp && \
188                 ln -sf ../../../../../../elisp/$(outconfbase)/lilypond-words.el . && \
189                 ln -s $(top-src-dir)/elisp/*.el .
190         $(foreach i,$(CATALOGS), \
191                 (mkdir -p $(tree-share)/locale/$i/LC_MESSAGES && \
192                 cd $(tree-share)/locale/$i/LC_MESSAGES && \
193                 ln -sf ../../../../../po/$(outconfbase)/$i.mo lilypond.mo) &&) true
194         touch $(tree-share-prefix)/lilypond-force
195
196 $(tree-share-prefix)/mf-link-tree link-mf-tree: $(tree-share-prefix)/lilypond-force
197         -rm -f $(tree-share-prefix)/fonts/otf/* &&  \
198         rm -f $(tree-share-prefix)/fonts/svg/* &&  \
199         rm -f $(tree-share-prefix)/fonts/tfm/* &&  \
200         rm -f $(tree-share-prefix)/fonts/type1/* &&  \
201                 cd $(tree-share-prefix)/fonts/otf && \
202                 ln -s ../../../../../../mf/$(outconfbase)/*.otf .
203         -cd $(tree-share-prefix)/fonts/svg && \
204                 ln -s ../../../../../../mf/$(outconfbase)/*.svg .
205         -cd $(tree-share-prefix)/fonts/tfm && \
206                 ln -s ../../../../../../mf/$(outconfbase)/*.tfm .
207         -cd $(tree-share-prefix)/fonts/type1 && \
208                 ln -s ../../../../../../mf/$(outconfbase)/*.pfa .
209
210 TAGS.make: dummy
211         etags -o $@ $(find $(top-src-dir) -name 'GNUmakefile*' -o -name '*.make')
212
213 local-clean: build-dir-setup-clean local-web-clean
214
215 local-web-clean:
216         rm -rf $(outdir)/web-root/
217
218
219
220 build-dir-setup-clean:
221         cd $(top-build-dir) && rm -rf share
222
223 $(config_h): config.hh.in
224 #
225 # this is to prevent people from getting
226 # undefined symbols  when we add them to config.h.in,
227 # and they blindly run "cvs update; make".
228 #
229         @echo
230         @echo ' *** $(config_h) is out of date'
231         @echo ' *** Remove it and rerun autogen:'
232         @echo '         rm $(config_h); ./autogen.sh'
233         @echo
234         @false