summaryrefslogtreecommitdiff
path: root/ant-common.bat
diff options
context:
space:
mode:
Diffstat (limited to 'ant-common.bat')
-rw-r--r--ant-common.bat43
1 files changed, 0 insertions, 43 deletions
diff --git a/ant-common.bat b/ant-common.bat
deleted file mode 100644
index 565f09ffb6..0000000000
--- a/ant-common.bat
+++ /dev/null
@@ -1,43 +0,0 @@
-@echo off
-rem ####################################################-*-Batch-script-*-####
-rem # Common settings
-rem ##########################################################################
-rem # $Id$
-
-rem ##########################################################################
-rem # Apache Ant
-
-set _ANTCMD=ant
-set ANT_OPTS=-Xmx256M
-rem set ANT_ARGS=-verbose
-
-rem ##########################################################################
-rem # Shell commands
-
-set CP=copy /y
-set ECHO=echo
-set RM=del /s /q
-
-rem ##########################################################################
-rem # environment setup
-
-echo Setting up the build environment..
-echo.
-call %_ANTCMD% -Dplatform=win -q -f setenv-nsc.xml >NUL
-call env.bat
-
-rem ##########################################################################
-
-set ANT_CONFIG_BUILDFILE=%1.xml
-set ANT_BUILDFILE=concrete-%ANT_CONFIG_BUILDFILE%
-set ANT_EXCLUDEFILE=developer/%USERNAME%/%1-excludes.xml
-
-if exist "%ANT_EXCLUDEFILE%" goto exclude
-%CP% %ANT_CONFIG_BUILDFILE% %ANT_BUILDFILE%
-goto next
-:exclude
-echo %ANT_EXCLUDEFILE% file not yet supported
-%CP% %ANT_CONFIG_BUILDFILE% %ANT_BUILDFILE%
-:next
-
-rem ##########################################################################