blob: 269f8fdbc298bac6f4c6158a6ec9cf455cd6c072 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
PACKAGE = "Testing_Reference"
all: clean clean_ids
@publican build --embedtoc --publish --langs=en-US --formats=html,html-single,pdf
@publican install_book --site_config=../site.cfg --lang=en-US
upload: all
@rsync -aHvz publish/en-US/ hosted.kolabsys.com:./public_html/kolab-docs/
clean:
@publican clean
clean_ids:
@cp -a ../Common_Content/en-US/*.xml en-US/.
@publican clean_ids
@sed -i -r \
-e 's/\t/ /g' \
-e 's/((\s{4})+)\s*/\1/g' \
-e 's/\s*$$//g' \
`find en-US/ -type f -name "*.xml"`
|