LEFT | RIGHT |
(no file at all) | |
1 # -*-Makefile-*- | 1 # -*-Makefile-*- |
2 | 2 |
3 depth = . | 3 depth = . |
4 | 4 |
5 SUBDIRS = python scripts \ | 5 SUBDIRS = python scripts \ |
6 flower lily \ | 6 flower lily \ |
7 mf ly \ | 7 mf ly \ |
8 tex ps scm \ | 8 tex ps scm \ |
9 po \ | 9 po \ |
10 elisp vim \ | 10 elisp vim \ |
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
85 $(outdir)/RELEASE-COMMIT: # FIXME: any file in $(top-src-dir)/.git/ we can depen
d on and be sure RELEASE-COMMIT is up to date? | 85 $(outdir)/RELEASE-COMMIT: # FIXME: any file in $(top-src-dir)/.git/ we can depen
d on and be sure RELEASE-COMMIT is up to date? |
86 $(call ly_progress,Making,$@,) | 86 $(call ly_progress,Making,$@,) |
87 git --git-dir=$(top-src-dir)/.git show HEAD | head -100 > $@ | 87 git --git-dir=$(top-src-dir)/.git show HEAD | head -100 > $@ |
88 | 88 |
89 # junk me as soon as RELEASE-COMMIT FIXME: has been addressed | 89 # junk me as soon as RELEASE-COMMIT FIXME: has been addressed |
90 refresh-release-files: | 90 refresh-release-files: |
91 test -d $(top-src-dir)/.git && rm -f $(RELEASE_OUT_FILES) | 91 test -d $(top-src-dir)/.git && rm -f $(RELEASE_OUT_FILES) |
92 $(MAKE) $(RELEASE_OUT_FILES) | 92 $(MAKE) $(RELEASE_OUT_FILES) |
93 | 93 |
94 python-modules: | 94 python-modules: |
| 95 $(MAKE) -C python |
95 $(MAKE) -C scripts/build | 96 $(MAKE) -C scripts/build |
96 $(MAKE) -C python | |
97 | 97 |
98 top-doc: python-modules | 98 top-doc: python-modules |
99 | 99 |
100 local-clean: local-clean-ChangeLog local-clean-filelist | 100 local-clean: local-clean-ChangeLog local-clean-filelist |
101 | 101 |
102 local-clean-ChangeLog: | 102 local-clean-ChangeLog: |
103 rm -f ChangeLog | 103 rm -f ChangeLog |
104 | 104 |
105 info: | 105 info: |
106 $(foreach d, $(INFO_DIRECTORIES),$(MAKE) -C $(d) out=www info && ) true | 106 $(foreach d, $(INFO_DIRECTORIES),$(MAKE) -C $(d) out=www info && ) true |
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
201 | 201 |
202 src-ext = c cc yy ll hh icc py scm tex ps texi itexi tely itely sh | 202 src-ext = c cc yy ll hh icc py scm tex ps texi itexi tely itely sh |
203 | 203 |
204 doc-clean: snippets-clean $(tree-share-prefix)/lilypond-force | 204 doc-clean: snippets-clean $(tree-share-prefix)/lilypond-force |
205 | 205 |
206 default: $(config_h) build-dir-setup build-scripts | 206 default: $(config_h) build-dir-setup build-scripts |
207 | 207 |
208 build-dir-setup: $(tree-share-prefix)/lilypond-force | 208 build-dir-setup: $(tree-share-prefix)/lilypond-force |
209 | 209 |
210 build-scripts: | 210 build-scripts: |
| 211 $(MAKE) -C python |
211 $(MAKE) -C scripts/build | 212 $(MAKE) -C scripts/build |
212 | 213 |
213 PO_FILES = $(call src-wildcard,$(src-depth)/po/*.po) | 214 PO_FILES = $(call src-wildcard,$(src-depth)/po/*.po) |
214 HELP_CATALOGS = $(PO_FILES:po/%.po=%) | 215 HELP_CATALOGS = $(PO_FILES:po/%.po=%) |
215 CATALOGS = $(HELP_CATALOGS:lilypond=) | 216 CATALOGS = $(HELP_CATALOGS:lilypond=) |
216 | 217 |
217 # Preparing LilyPond tree for build-dir exec | 218 # Preparing LilyPond tree for build-dir exec |
218 link-tree: $(tree-share-prefix)/lilypond-force | 219 link-tree: $(tree-share-prefix)/lilypond-force |
219 | 220 |
220 $(tree-share-prefix)/lilypond-force: GNUmakefile $(outdir)/VERSION | 221 $(tree-share-prefix)/lilypond-force: GNUmakefile $(outdir)/VERSION |
(...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
415 | 416 |
416 test-snippets-clean: | 417 test-snippets-clean: |
417 rm -rf out/lybook-testdb | 418 rm -rf out/lybook-testdb |
418 | 419 |
419 # we want this separate for security; see CG 4.2. -gp | 420 # we want this separate for security; see CG 4.2. -gp |
420 website: | 421 website: |
421 $(MAKE) config_make=$(config_make) \ | 422 $(MAKE) config_make=$(config_make) \ |
422 top-src-dir=$(top-src-dir) \ | 423 top-src-dir=$(top-src-dir) \ |
423 -f $(top-src-dir)/make/website.make \ | 424 -f $(top-src-dir)/make/website.make \ |
424 website | 425 website |
LEFT | RIGHT |