diff options
author | Jeroen van Meeuwen (Ergo Project) <jeroen.van.meeuwen@ergo-project.org> | 2011-01-05 23:42:56 (GMT) |
---|---|---|
committer | Jeroen van Meeuwen (Ergo Project) <jeroen.van.meeuwen@ergo-project.org> | 2011-01-05 23:42:56 (GMT) |
commit | 4d849a6e64d30d8d1f29b8d82f87f692d617069b (patch) | |
tree | a827a49c142cd188f3677586d7f10941b24f9874 /Deployment_Guide/Makefile | |
parent | 090f09897fa635c5b844fc7046fb1eaa6e181adb (diff) | |
download | kolab-docs-4d849a6e64d30d8d1f29b8d82f87f692d617069b.tar.gz |
Updates to the documentation
Diffstat (limited to 'Deployment_Guide/Makefile')
-rw-r--r-- | Deployment_Guide/Makefile | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Deployment_Guide/Makefile b/Deployment_Guide/Makefile new file mode 100644 index 0000000..1ec237d --- /dev/null +++ b/Deployment_Guide/Makefile @@ -0,0 +1,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"` |