blob: 1ec237d541e03095ab462beade84847a49baeda0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
PACKAGE = "Deployment_Guide"
all: clean clean_ids
@publican build --langs=en-US --formats=html,html-single,pdf
@rsync -aHvz tmp/en-US/{html,html-single,pdf} hosted.kolabsys.com:./public_html/kolab-2.3-docs/$(PACKAGE)/
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"`
|