From 7ffb36f931ae12a967bf6916092c1c39031ec1df Mon Sep 17 00:00:00 2001 From: shankar Date: Thu, 4 Mar 2010 10:15:21 +0000 Subject: 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 --- dist.sh.in | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100755 dist.sh.in (limited to 'dist.sh.in') 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 -- cgit v1.1-32-gdbae