summaryrefslogtreecommitdiff
path: root/make
diff options
context:
space:
mode:
authorFrancisco Vila <francisco.vila@hispalinux.es>2011-01-31 16:53:16 +0100
committerFrancisco Vila <francisco.vila@hispalinux.es>2011-02-01 20:02:10 +0100
commitc58b9bd118958423656e674c25d940cdec71f58a (patch)
tree0044e3a967cb26f7bbd141d9be9e0dd8c120560f /make
parent4c67a449e01a229165a8fd5f26c06cb90ba97346 (diff)
Build: end directories in their bare names and avoid some double slashes in logs.
Diffstat (limited to 'make')
-rw-r--r--make/ly-rules.make2
-rw-r--r--make/website.make34
2 files changed, 18 insertions, 18 deletions
diff --git a/make/ly-rules.make b/make/ly-rules.make
index 19b00f05b2..0df0643ee3 100644
--- a/make/ly-rules.make
+++ b/make/ly-rules.make
@@ -2,7 +2,7 @@
# TODO: fix hardcoded out/ ?
LYS_OUTPUT_OPTION= --lily-output-dir $(LYS_OUTPUT_DIR)
-LYS_OUTPUT_DIR=$(top-build-dir)/out/lybook-db/
+LYS_OUTPUT_DIR=$(top-build-dir)/out/lybook-db
LILYPOND_BOOK_FLAGS += $(LYS_OUTPUT_OPTION)
$(outdir)/%.latex: %.doc $(INIT_LY_SOURCES) $(SCHEME_SOURCES)
LILYPOND_VERSION=$(TOPLEVEL_VERSION) $(PYTHON) $(LILYPOND_BOOK) $(LILYPOND_BOOK_INCLUDES) --process='$(LILYPOND_BOOK_PROCESS) $(LILYPOND_BOOK_LILYPOND_FLAGS)' --output=$(outdir) $(LILYPOND_BOOK_FLAGS) $<
diff --git a/make/website.make b/make/website.make
index 02ff0da62c..2ac54c5a43 100644
--- a/make/website.make
+++ b/make/website.make
@@ -16,18 +16,18 @@ ifeq ($(WEBSITE_ONLY_BUILD),1)
top-htaccess=$(trusted-dir)/lilypond.org.htaccess
dir-htaccess=$(trusted-dir)/website-dir.htaccess
TEXI2HTML_PROGRAM=$(HOME)/usr/bin/texi2html
- EXAMPLES=$(HOME)/lilypond/media/ly-examples/
+ EXAMPLES=$(HOME)/lilypond/media/ly-examples
PICTURES=$(HOME)/lilypond/media/pictures
else
### for normal git
- script-dir=$(top-src-dir)/scripts/build/
+ script-dir=$(top-src-dir)/scripts/build
texi2html-init-file=$(top-src-dir)/Documentation/lilypond-texi2html.init
top-htaccess=$(top-src-dir)/Documentation/web/server/lilypond.org.htaccess
dir-htaccess=$(top-src-dir)/Documentation/web/server/website-dir.htaccess
include $(config_make)
# I assume this is run from top-build-dir
- EXAMPLES=Documentation/web/ly-examples/out-www/
- PICTURES=Documentation/pictures/out-www/
+ EXAMPLES=Documentation/web/ly-examples/out-www
+ PICTURES=Documentation/pictures/out-www
endif
@@ -47,7 +47,7 @@ MASS_LINK=python $(script-dir)/mass-link.py
WEB_POST=python $(script-dir)/website_post.py
WEB_BIBS=python $(script-dir)/bib2texi.py
-SERVER_FILES=$(top-src-dir)/Documentation/web/server/
+SERVER_FILES=$(top-src-dir)/Documentation/web/server
# don't include web
MANUALS=$(wildcard $(top-src-dir)/Documentation/*.tely)
@@ -64,7 +64,7 @@ website-version:
website-xrefs: website-version
for l in '' $(WEB_LANGS); do \
$(EXTRACT_TEXI_FILENAMES) \
- -I $(top-src-dir)/Documentation/ \
+ -I $(top-src-dir)/Documentation \
-I $(top-src-dir)/Documentation/"$$l" \
-I $(OUT) -o $(OUT) --split=node \
$(top-src-dir)/Documentation/"$$l"/web.texi ;\
@@ -74,20 +74,20 @@ website-xrefs: website-version
d=`basename "$$b" .tely`; \
if [ -e "$$n" ] ; then \
$(EXTRACT_TEXI_FILENAMES) \
- -I $(top-src-dir)/Documentation/ \
+ -I $(top-src-dir)/Documentation \
-I $(top-src-dir)/Documentation/"$$l" \
- -I $(top-src-dir)/Documentation/"$$l"/"$$d"/ \
+ -I $(top-src-dir)/Documentation/"$$l"/"$$d" \
-I $(OUT) -o $(OUT) "$$n" ; \
fi ; \
done; \
done;
website-bibs: website-version
- BSTINPUTS=$(top-src-dir)/Documentation/web/ \
+ BSTINPUTS=$(top-src-dir)/Documentation/web \
$(WEB_BIBS) -s web \
-o $(OUT)/others-did.itexi \
$(top-src-dir)/Documentation/web/others-did.bib
- BSTINPUTS=$(top-src-dir)/Documentation/web/ \
+ BSTINPUTS=$(top-src-dir)/Documentation/web \
$(WEB_BIBS) -s web \
-o $(OUT)/we-wrote.itexi \
$(top-src-dir)/Documentation/web/we-wrote.bib
@@ -102,7 +102,7 @@ website-texinfo: website-version website-xrefs website-bibs
$(TEXI2HTML) --prefix=index \
--split=section \
--I=$(top-src-dir)/Documentation/"$$l" \
- --I=$(top-src-dir)/Documentation/ \
+ --I=$(top-src-dir)/Documentation \
--I=$(OUT) \
$$langopt \
--init-file=$(texi2html-init-file) \
@@ -114,11 +114,11 @@ website-texinfo: website-version website-xrefs website-bibs
website-css:
- cp $(top-src-dir)/Documentation/css/*.css $(OUT)/website/
+ cp $(top-src-dir)/Documentation/css/*.css $(OUT)/website
website-pictures:
- mkdir -p $(OUT)/website/pictures/
- cp $(PICTURES)/* $(OUT)/website/pictures/
+ mkdir -p $(OUT)/website/pictures
+ cp $(PICTURES)/* $(OUT)/website/pictures
ln -sf website/pictures $(OUT)/pictures
website-examples:
@@ -126,11 +126,11 @@ website-examples:
cp $(EXAMPLES)/* $(OUT)/website/ly-examples
web-post:
- $(WEB_POST) $(OUT)/website/
+ $(WEB_POST) $(OUT)/website
website: website-texinfo website-css website-pictures website-examples web-post
- cp $(SERVER_FILES)/favicon.ico $(OUT)/website/
- cp $(SERVER_FILES)/robots.txt $(OUT)/website/
+ cp $(SERVER_FILES)/favicon.ico $(OUT)/website
+ cp $(SERVER_FILES)/robots.txt $(OUT)/website
cp $(top-htaccess) $(OUT)/.htaccess
cp $(dir-htaccess) $(OUT)/website/.htaccess