diff options
author | Julien Rioux <jrioux@physics.utoronto.ca> | 2011-12-19 04:13:09 -0500 |
---|---|---|
committer | Julien Rioux <jrioux@physics.utoronto.ca> | 2012-01-16 01:35:36 -0500 |
commit | dcbac367ac2ff45a4cdbe48feb7438f2d778ddbb (patch) | |
tree | f4e2e6b43b677be739b380ca1a44f35498679b8b /GNUmakefile.in | |
parent | 77c5e6ba0ee7e5aad7c4ff339e728fb9d2ce285e (diff) |
Build: Dependencies for www online- and offline-root targets (issue 2028).
Add dependencies for the make doc targets in the top source directory,
based on how these targets are currently being generated by the scripts
scripts/build/mutopia-index.py and scripts/build/www_post.py.
Diffstat (limited to 'GNUmakefile.in')
-rw-r--r-- | GNUmakefile.in | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/GNUmakefile.in b/GNUmakefile.in index 61e3929943..45e5bf7311 100644 --- a/GNUmakefile.in +++ b/GNUmakefile.in @@ -118,10 +118,26 @@ uninstall-WWW: # For both online and offline docs, issue `make doc WEB_TARGETS="offline online"' WEB_TARGETS = offline -WWW-post: +WEB_EXAMPLE_FILES = $(wildcard input/$(outdir)/*.ly) \ + $(wildcard input/*/$(outdir)/*.ly) \ + $(wildcard input/*/*/$(outdir)/*.ly) + +WEB_TRACKED_FILES = $(wildcard $(outdir)/*.{midi,html,pdf,png,jpg,jpeg,txt,ly,ily,signature,css,zip,js,idx,php}) \ + $(wildcard input/$(outdir)/*.{midi,html,pdf,png,jpg,jpeg,txt,ly,ily,signature,css,zip,js,idx,php}) \ + $(wildcard input/*/$(outdir)/*.{midi,html,pdf,png,jpg,jpeg,txt,ly,ily,signature,css,zip,js,idx,php}) \ + $(wildcard Documentation/$(outdir)/*.{midi,html,pdf,png,jpg,jpeg,txt,ly,ily,signature,css,zip,js,idx,php}) \ + $(wildcard Documentation/$(outdir)/*/*.{midi,html,pdf,png,jpg,jpeg,txt,ly,ily,signature,css,zip,js,idx,php}) + +WWW-post: $(top-build-dir)/.htaccess $(outdir)/examples.html $(outdir)/offline-root/index.html + # need UTF8 setting in case this is hosted on a website. +$(top-build-dir)/.htaccess: 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 + +$(outdir)/examples.html: $(WEB_EXAMPLE_FILES) $(buildscript-dir)/mutopia-index -o $(outdir)/examples.html input/ + +$(outdir)/offline-root/index.html: $(WEB_TRACKED_FILES) $(buildscript-dir)/www_post $(PACKAGE_NAME) $(TOPLEVEL_VERSION) $(outdir) "$(WEB_TARGETS)" find $(outdir)/offline-root -type l | xargs rm -f endif # ifeq ($(out),www) |