Skip to content

Commit 4a75495

Browse files
committed
Update Makefile to point to new tools location.
1 parent 710236d commit 4a75495

File tree

3 files changed

+5
-10
lines changed

3 files changed

+5
-10
lines changed

Makefile

+3-8
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,11 @@
11
# Makefile for SVG 2.
22

3-
all-with-tools-check : tools-check all
3+
all :
4+
@./tools/build.py
45

56
all-specs : all
67
@for spec in specs/*; do [ -f $$spec/Makefile ] && make -C $$spec/ all; done
78

8-
tools-check :
9-
@bash -c "REMOTE_REV=$$(hg id -i http://svgwg.org/hg/svg2-tools 2>/dev/null); [ \$$? = 0 -a \"\$$REMOTE_REV\" != \"\" ] || exit 0; LOCAL_REV=$$(hg id -i ../svg2-tools); [ \"\$$LOCAL_REV\" = \"\$$REMOTE_REV\" -o \"\$$LOCAL_REV\" = \"\$$REMOTE_REV\"+ ] || (echo \"You must update your svg2-tools repository! (Remote repository has revision \$$REMOTE_REV, but you are at \$$LOCAL_REV.)\"; exit 1)"
10-
11-
all :
12-
@../svg2-tools/build.py
13-
149
pdf : all
1510
prince --no-author-style -s build/publish/style/svg-style.css -s http://www.w3.org/StyleSheets/TR/W3C-REC -s build/publish/style/svg-style-print.css build/publish/single-page.html -o build/publish/single-page.pdf
1611

@@ -32,5 +27,5 @@ zip : all
3227
rm -rf build/publish/$(ZIPDIR)
3328

3429
clean :
35-
@../svg2-tools/build.py -c
30+
@./tools/build.py -c
3631

specs/integration/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
include ../../../svg2-tools/spec.mk
1+
include ../../tools/spec.mk

specs/template/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
include ../../../svg2-tools/spec.mk
1+
include ../../tools/spec.mk

0 commit comments

Comments
 (0)