Return-Path: Delivered-To: apmail-ant-user-archive@www.apache.org Received: (qmail 49266 invoked from network); 28 Apr 2005 15:10:44 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 28 Apr 2005 15:10:44 -0000 Received: (qmail 16298 invoked by uid 500); 28 Apr 2005 15:11:21 -0000 Delivered-To: apmail-ant-user-archive@ant.apache.org Received: (qmail 16225 invoked by uid 500); 28 Apr 2005 15:11:20 -0000 Mailing-List: contact user-help@ant.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Subscribe: List-Help: List-Post: List-Id: "Ant Users List" Reply-To: "Ant Users List" Delivered-To: mailing list user@ant.apache.org Received: (qmail 16210 invoked by uid 99); 28 Apr 2005 15:11:19 -0000 X-ASF-Spam-Status: No, hits=0.1 required=10.0 tests=FORGED_RCVD_HELO,RCVD_BY_IP X-Spam-Check-By: apache.org Received-SPF: pass (hermes.apache.org: local policy) Received: from mail.shs.siemens.com (HELO mail.shs.siemens.com) (64.46.248.224) by apache.org (qpsmtpd/0.28) with ESMTP; Thu, 28 Apr 2005 08:11:19 -0700 Received: from mlvv9m1x.shs.siemens.com (mlvv9m1x.shs.siemens.com [165.226.204.11]) by mail.shs.siemens.com (Postfix) with ESMTP id 7A55F38D47 for ; Thu, 28 Apr 2005 11:10:06 -0400 (EDT) Received: from MLVV9MBA.ww005.siemens.net (mlvv9mba.smshsc.net [165.226.204.44]) by mlvv9m1x.shs.siemens.com (8.12.11/8.12.11) with ESMTP id j3SFA3Xl025215 for ; Thu, 28 Apr 2005 11:10:03 -0400 Received: from MLVV099a.ww005.siemens.net ([165.226.248.184]) by 165.226.204.44 with InterScan Messaging Security Suite; Thu, 28 Apr 2005 11:10:05 -0400 Received: by mlvv099a.ww005.siemens.net with Internet Mail Service (5.5.2657.72) id <220BAG7P>; Thu, 28 Apr 2005 11:10:05 -0400 Message-ID: <47595B04C59BDE4592F43A57C9ED8FAC06580710@mlvv9mle.ww005.siemens.net> From: Currimbhoy Shahyan To: "'Ant Users List'" Subject: Trigger standard build file from ant script Date: Thu, 28 Apr 2005 11:10:02 -0400 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2657.72) Content-Type: text/plain; charset="iso-8859-1" X-Virus-Checked: Checked X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Hi, Our organization currently uses standard build (.bld) files to build our components. I want to automate this process and am looking into cruise control. Cruise control however only supports ant, maven and nant. I am looking at trying to trigger our standard build script from an ant script. Can anyone give me some information on how that can be done? Thanks, Shahyan. Standard Build Script Snippet: **************************************************************************** *********************** @%set SAT_VRF=$(SCS_VERSION_LABEL,S/[^_]*_\([^_]*\)_.*/\1/) @%set SAT_SOLARIS_SO = LIB\*.so.$(SAT_VRF) !IF "$(MBUILD)"=="YES" !IF %EXIST($(SAT_SOLARIS_SO)) xcopy /I /F /C /Y $(SAT_SOLARIS_SO) $(MBUILD_TARGET_DIR)\LIB xcopy /I /F /C /Y LIB\*.so $(MBUILD_TARGET_DIR)\LIB xcopy /I /F /C /Y LIB\*.so.1 $(MBUILD_TARGET_DIR)\LIB !ELSE @ECHO $(SAT_SOLARIS_SO) is missing. exit 1 !ENDIF !ENDIF #--------------------------------------------------------------------------- ----------------- # 'system' is effectively the 'default target' that builds if OMAKE is not passed a target #--------------------------------------------------------------------------- ----------------- SYSTEM_DEPENDENCIES= !If %defined(SAT_MAKE_JAVA) && ("$(SAT_MAKE_JAVA)"!="NO") # Java-only! # # Cleanup before compiling? ! If %defined(SAT_CLEAN_JAVA) && ("$(SAT_CLEAN_JAVA)"=="YES") # Delete generated Java files SYSTEM_DEPENDENCIES+= clean_java ! EndIf **************************************************************************** *********************** ------------------------------------------------------------------------------- This message and any included attachments are from Siemens Medical Solutions USA, Inc. and are intended only for the addressee(s). The information contained herein may include trade secrets or privileged or otherwise confidential information. Unauthorized review, forwarding, printing, copying, distributing, or using such information is strictly prohibited and may be unlawful. If you received this message in error, or have reason to believe you are not authorized to receive it, please promptly delete this message and notify the sender by e-mail with a copy to Central.SecurityOffice@shs.siemens.com Thank you --------------------------------------------------------------------- To unsubscribe, e-mail: user-unsubscribe@ant.apache.org For additional commands, e-mail: user-help@ant.apache.org