From 69e9857675a1a7c25c962dfaed7076a35f057830 Mon Sep 17 00:00:00 2001 From: Stephane Bailliez Date: Mon, 7 Jan 2002 12:01:28 +0000 Subject: [PATCH] Make it easy for people interested to compile. git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@270609 13f79535-47bb-0310-9956-ffa450edef68 --- proposal/sandbox/clearcase/build.sh | 16 ++++++++ proposal/sandbox/clearcase/build.xml | 56 ++++++++++++++++++++++++++++ 2 files changed, 72 insertions(+) create mode 100644 proposal/sandbox/clearcase/build.sh create mode 100644 proposal/sandbox/clearcase/build.xml diff --git a/proposal/sandbox/clearcase/build.sh b/proposal/sandbox/clearcase/build.sh new file mode 100644 index 000000000..f15a7e7af --- /dev/null +++ b/proposal/sandbox/clearcase/build.sh @@ -0,0 +1,16 @@ +#!/bin/sh + +cygwin=false; +case "`uname`" in + CYGWIN*) cygwin=true ;; +esac + +PWD=`pwd` +if $cygwin ; then + PWD=`cygpath --windows "$PWD"` +fi + +cd ../../.. +/bin/sh ./build.sh -buildfile $PWD/build.xml $* +cd $PWD + diff --git a/proposal/sandbox/clearcase/build.xml b/proposal/sandbox/clearcase/build.xml new file mode 100644 index 000000000..bb49874f3 --- /dev/null +++ b/proposal/sandbox/clearcase/build.xml @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file