diff --git a/startup/borland.bat b/startup/borland.bat deleted file mode 100755 index 5a44c3204..000000000 --- a/startup/borland.bat +++ /dev/null @@ -1,80 +0,0 @@ -@ECHO OFF -REM ************************************************************************* -REM Copyright (c) 2002 The University of Chicago, as Operator of Argonne -REM National Laboratory. -REM Copyright (c) 2002 The Regents of the University of California, as -REM Operator of Los Alamos National Laboratory. -REM EPICS BASE Versions 3.13.7 -REM and higher are distributed subject to a Software License Agreement found -REM in file LICENSE that is included with this distribution. -REM ************************************************************************* - -REM =================================================== -REM ====== REQUIRED ENVIRONMENT VARIABLES FOLLOW ====== -REM -REM --------------- WINDOWS --------------------------- -REM ----- WIN95 ----- -REM set PATH=C:\WINDOWS;C:\WINDOWS\COMMAND -REM ----- WINNT ----- -set PATH=C:\WINNT;C:\WINNT\SYSTEM32 - -REM --------------- GNU make (use cygwin make ) ---------------- -REM Needed only if using GNU make from cygwin -REM Can be replaced with path to a GNU make -REM -REM cygwin contains tk/tcl, vim, perl, and many unix tools -REM need grep from here NOT from cvs directory -REM some tools may need a tmp directory -set PATH=%PATH%;c:\cygwin\bin - -REM --------------- perl (use cygwin perl) ------------ -REM set PERLLIB=/C//cygwin/lib/perl5/5.6.1 - -REM ------------ Borland c++ compiler ----------------- -REM cygwin tools first so borland make not used -set PATH=%PATH%;c:\Borland\Bcc55\bin - -REM --------------- EPICS ----------------------------- -REM R3.14 requirements -set EPICS_HOST_ARCH=win32-x86-borland -set PATH=%PATH%;G:\epics\base\bin\%EPICS_HOST_ARCH% -set PATH=%PATH%;G:\epics\extensions\bin\%EPICS_HOST_ARCH% - -REM =================================================== -REM ====== OPTIONAL ENVIRONMENT VARIABLES FOLLOW ====== - -REM -------------------- EPICS ------------------------ -REM HOST_ARCH needed for Makefile.Host builds -set HOST_ARCH=Borland - -REM --------------- GNU make flags -------------------- -REM set MAKEFLAGS=-w - -REM --------------- EPICS Channel Access -------------- -REM Uncomment and modify the following lines -REM to override the base/configure/CONFIG_ENV defaults -REM set EPICS_CA_ADDR_LIST= n.n.n.n n.n.n.n -REM set EPICS_CA_AUTO_ADDR_LIST=YES - -REM --------------- cygwin vim ------------------------ -REM HOME needed by vim to find _vimrc file. -set HOME=/home/%USERNAME% -REM VIM needed by vim to find help files. -set VIM=/usr/share/vim/vim61 - -REM --------------- cygwin cvs ------------------------ -REM HOME needed by cvs for .cvsrc file (set in vim above) -set CVSROOT=:ext:%USERNAME%@venus.aps.anl.gov:/usr/local/epicsmgr/cvsroot -set CVS_RSH=/bin/ssh.exe - -REM --------------- JAVA ------------------------------ -REM Needed for java extensions -set PATH=%PATH%;C:\j2sdk1.4.1_01\bin -set CLASSPATH=G:\epics\extensions\javalib - -REM --------------- Exceed ---------------------------- -REM Needed for XWindow extensions -REM Cygwin should preceed Exceed in path -REM set PATH=%PATH%;C:\Exceed - -REM ===================================================