summaryrefslogtreecommitdiffstats
path: root/dist.sh.in
diff options
context:
space:
mode:
authorGravatar shankar2010-03-04 10:15:21 +0000
committerGravatar shankar2010-03-04 10:15:21 +0000
commit7ffb36f931ae12a967bf6916092c1c39031ec1df (patch)
treeecd33a80e9ca47518162354df702902899f7433f /dist.sh.in
parent71648a5496d5e72e3d9107e76b068139eea40a6e (diff)
downloadaxis2c-7ffb36f931ae12a967bf6916092c1c39031ec1df.tar.gz
axis2c-7ffb36f931ae12a967bf6916092c1c39031ec1df.tar.bz2
adding *.in files to fix issue AXIS2C-1457
git-svn-id: http://svn.apache.org/repos/asf/axis/axis2/c/core/trunk@918921 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'dist.sh.in')
-rwxr-xr-xdist.sh.in36
1 files changed, 36 insertions, 0 deletions
diff --git a/dist.sh.in b/dist.sh.in
new file mode 100755
index 0000000..1dc1059
--- /dev/null
+++ b/dist.sh.in
@@ -0,0 +1,36 @@
+#!/bin/bash
+
+rm -rf xdocs/api/html
+maven site
+cd xdocs/api
+doxygen doxygenconf
+cd ../..
+cp -r xdocs/api/html target/docs/api/
+cp xdocs/docs/mod_log/module.xml target/docs/docs/mod_log
+rm target/docs/README
+rm target/docs/dependencies.html
+rm target/docs/downloads.html
+rm target/xdocs/mail-lists.html
+cp -r target/docs axis2c-src-@VERSION@
+
+cd samples
+make dist
+tar -xf axis2c-src-@VERSION@.tar.gz
+mv axis2c-src-@VERSION@ ../axis2c-src-@VERSION@
+cd ../axis2c-src-@VERSION@
+mv axis2c-src-@VERSION@ samples
+
+for i in `find . -name "*.la"`
+do
+ rm $i
+done
+
+for i in `find . -name "*.a"`
+do
+ rm $i
+done
+
+for i in `find . -type d -name ".svn"`
+do
+ rm -rf $i
+done