diff --git a/startup/win32.bat b/startup/win32.bat new file mode 100644 index 000000000..5a0dce91b --- /dev/null +++ b/startup/win32.bat @@ -0,0 +1,80 @@ +@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) ------------ +set PERLLIB=/C//cygwin/lib/perl5/5.6.1 + +REM --------------- Visual c++ ------------------------ +REM ----- Visual c++ 6.0 ----- +call "C:\Program files\Microsoft Visual Studio\Vc98\bin\vcvars32.bat" + +REM --------------- EPICS ----------------------------- +REM R3.14 requirements +set EPICS_HOST_ARCH=win32-x86 +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 tools ---------------------- +REM HOST_ARCH needed for Makefile.Host builds +set HOST_ARCH=WIN32 + +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=164.54.188.65 164.54.5.255 +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 --------------- remote cvs ------------------------ +REM HOME needed by cvs for .cvsrc file (set in vim above) +set CVSROOT=:ext:%USERNAME%@venus.aps.anl.gov:/net/phoebus/epicsmgr/cvsroot +set CVS_RSH=/bin/ssh.exe + +REM --------------- JAVA ------------------------------ +REM Needed for java extensions +set PATH=%PATH%;C:\j2sdk1.4.0\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 ===================================================