]> git.donarmstrong.com Git - lilypond.git/blob - GNUmakefile.in
* make/mutopia-rules.make ($(outdir)/%.png $(outdir)/%.pdf
[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         cygwin 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 aclocal.m4 autogen.sh lexer-gcc-3.1.sh Doxyfile
20 README_FILES = ChangeLog COPYING DEDICATION ROADMAP THANKS HACKING
21 README_TXT_FILES = AUTHORS.txt README.txt INSTALL.txt NEWS.txt
22 IN_FILES := $(call src-wildcard,*.in)
23 PATCH_FILES = emacsclient.patch server.el.patch darwin.patch
24 EXTRA_DIST_FILES = VERSION .cvsignore SConstruct \
25   $(README_FILES) $(SCRIPTS) $(IN_FILES) $(PATCH_FILES)
26 NON_ESSENTIAL_DIST_FILES = $(README_TXT_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 doc: 
36         $(MAKE) -C Documentation
37
38 install-WWW:
39         -$(INSTALL) -m 755 -d $(DESTDIR)$(webdir)
40         cp -a $(outdir)/web-root/ $(DESTDIR)$(webdir)/
41
42         $(MAKE) -C Documentation/user local-install-WWW
43         $(MAKE) -C Documentation/user install-info
44
45 web-install:
46         $(MAKE) out=www install-WWW
47
48 uninstall-WWW:
49         #TODO
50
51 web-uninstall:
52         $(MAKE) out=www uninstall-WWW=
53
54 local-install:
55         $(INSTALL) -d $(DESTDIR)$(local_lilypond_datadir)
56
57 final-install:
58         @true
59
60 web-ext = html midi pdf png txt ly signature
61
62 footify = $(PYTHON) $(step-bindir)/add-html-footer.py  --name $(PACKAGE_NAME) --version $(TOPLEVEL_VERSION)
63 footifymail = MAILADDRESS='http://post.gmane.org/post.php?group=gmane.comp.gnu.lilypond.bugs'
64
65
66
67 local-WWW-post:
68 # need UTF8 setting in case this is hosted on a website. 
69         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
70         $(PYTHON) $(buildscript-dir)/mutopia-index.py -o $(outdir)/examples.html input/
71         echo '<META HTTP-EQUIV="refresh" content="0;URL=Documentation/index.html">' > $(outdir)/index.html
72         echo '<html><body>Redirecting to the documentation index...</body></html>' >> $(outdir)/index.html
73
74         cd $(top-build-dir) && $(FIND) . -name '*.html' -print | $(footifymail) xargs $(footify)
75
76 ## rewrite file names so we lose out-www
77         -mv $(outdir)/web-root/ $(outdir)/old-web-root
78         for d in out-www `cd $(top-build-dir) && find Documentation input -name 'out-www' `; do \
79                 echo $$d ; \
80                 (mkdir -p $(outdir)/web-root/$$d/ || true) ; \
81                 rsync -Wa --include source --include music-glossary \
82                         --include lilypond-internals  \
83                         --include lilypond \
84                 $(foreach pat,$(web-ext), --include '*'.$(pat)) $(top-build-dir)/$$d/ $(outdir)/web-root/$$d/../ ; \
85         done
86 ## todo: use --link-dest
87 #  --link-dest=$(outdir)/old-web-root/$$d
88         -rm -rf $(outdir)/old-web-root
89
90
91 tree-prefix = $(outdir)
92 tree-bin = $(tree-prefix)/bin
93 tree-lib = $(tree-prefix)/lib
94 tree-share = $(tree-prefix)/share
95 tree-share-prefix = $(tree-share)/lilypond/current
96 tree-lib-prefix = $(tree-lib)/lilypond/current
97
98 C_DIRS = flower lily
99 c-clean:
100         $(foreach i, $(C_DIRS), $(MAKE) -C $(i) clean &&) true
101
102 src-ext = c cc yy ll hh icc py scm tex ps texi itexi tely itely sh
103
104 web-clean:
105         $(MAKE) out=www clean
106         $(MAKE) $(tree-share-prefix)/lilypond-force
107
108 default: $(config_h) build-dir-setup 
109
110 build-dir-setup: $(tree-share-prefix)/lilypond-force
111
112 PO_FILES = $(call src-wildcard,$(src-depth)/po/*.po)
113 HELP_CATALOGS = $(PO_FILES:$(src-depth)/po/%.po=%)
114 CATALOGS = $(HELP_CATALOGS:lilypond=) 
115
116 $(tree-share-prefix)/lilypond-force link-tree: GNUmakefile
117 # Preparing LilyPond tree for build-dir exec
118         cd $(top-build-dir)/$(outbase) && rm -rf bin lib share
119         mkdir -p $(tree-bin)
120         mkdir -p $(tree-share-prefix)
121         mkdir -p $(tree-lib-prefix)
122         mkdir -p $(tree-share-prefix)/dvips
123         mkdir -p $(tree-share-prefix)/elisp
124         mkdir -p $(tree-share-prefix)/fonts
125         mkdir -p $(tree-share-prefix)/fonts/otf
126         mkdir -p $(tree-share-prefix)/fonts/tfm
127         mkdir -p $(tree-share-prefix)/fonts/type1
128         mkdir -p $(tree-share-prefix)/fonts/svg
129         mkdir -p $(tree-share-prefix)/fonts/map
130         mkdir -p $(tree-share-prefix)/fonts/enc
131         mkdir -p $(tree-share-prefix)/tex
132         cd $(tree-bin) && \
133                 ln -sf ../../lily/$(outconfbase)/lilypond . && \
134                 for i in abc2ly convert-ly etf2ly lilypond-book lilypond-invoke-editor midi2ly musicxml2ly; \
135                         do ln -sf ../../scripts/$(outconfbase)/$$i . ; done
136         cd $(tree-lib-prefix) && \
137                 ln -s ../../../../python/$(outconfbase) python
138         cd $(tree-share-prefix) && \
139                 ln -s $(top-src-dir)/ly ly && \
140                 ln -s ../../../../mf mf && \
141                 ln -s $(top-src-dir)/ps && \
142                 ln -s ../../../../python/$(outconfbase) python && \
143                 ln -s $(top-src-dir)/scm && \
144                 ln -s $(top-src-dir)/scripts scripts
145         cd $(tree-share-prefix)/dvips && \
146                 ln -s ./../../../mf/$(outconfbase) mf-out && \
147                 ln -s $(top-src-dir)/ps
148         cd $(tree-share-prefix)/tex && \
149                 ln -s $(top-src-dir)/tex source && \
150                 ln -s ../../../../../tex/$(outconfbase) tex-out && \
151                 ln -s ../../../../../mf/$(outconfbase) mf-out
152
153         cd $(tree-share-prefix)/fonts && \
154                 ln -s $(top-src-dir)/mf source && \
155                 true
156         -cd $(tree-share-prefix)/elisp && \
157                 ln -sf ../../../../../../elisp/$(outconfbase)/lilypond-words.el . && \
158                 ln -s $(top-src-dir)/elisp/*.el .
159         $(foreach i,$(CATALOGS), \
160                 (mkdir -p $(tree-share)/locale/$i/LC_MESSAGES && \
161                 cd $(tree-share)/locale/$i/LC_MESSAGES && \
162                 ln -sf ../../../../../po/$(outconfbase)/$i.mo lilypond.mo) &&) true
163         touch $(tree-share-prefix)/lilypond-force
164
165 $(tree-share-prefix)/mf-link-tree link-mf-tree: $(tree-share-prefix)/lilypond-force
166         -rm -f $(tree-share-prefix)/fonts/{otf,svg,tfm,type1}/* &&  \
167                 cd $(tree-share-prefix)/fonts/otf && \
168                 ln -s ../../../../../../mf/$(outconfbase)/*.otf .
169         -cd $(tree-share-prefix)/fonts/svg && \
170                 ln -s ../../../../../../mf/$(outconfbase)/*.svg .
171         -cd $(tree-share-prefix)/fonts/tfm && \
172                 ln -s ../../../../../../mf/$(outconfbase)/*.tfm .
173         -cd $(tree-share-prefix)/fonts/type1 && \
174                 ln -s ../../../../../../mf/$(outconfbase)/*.pfa .
175
176 TAGS.make: dummy
177         etags -o $@ $(find $(srcdir) -name 'GNUmakefile*' -o -name '*.make')
178
179 local-clean: build-dir-setup-clean
180 build-dir-setup-clean:
181         cd $(top-build-dir) && rm -rf share
182
183 $(config_h): config.hh.in
184 #
185 # this is to prevent people from getting
186 # undefined symbols  when we add them to config.h.in,
187 # and they blindly run "cvs update; make".
188 #
189         @echo
190         @echo ' *** $(config_h) is out of date'
191         @echo ' *** Remove it and rerun autogen:'
192         @echo '         rm $(config_h); ./autogen.sh'
193         @echo
194         @false