home *** CD-ROM | disk | FTP | other *** search
- @echo off
- rem
- rem ORIGINS: 27
- rem
- rem
- rem 10H9767, 10H9769 (C) COPYRIGHT International Business Machines Corp. 1992,1995
- rem All Rights Reserved
- rem Licensed Materials - Property of IBM
- rem US Government Users Restricted Rights - Use, duplication or
- rem disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
- @REM %Z% %I% %W% %G% %U% [%H% %T%]
-
- rem -- If you do not set SOMDRIVE and SOMBASE in your AUTOEXEC.BAT file
- rem -- then uncomment and customize the following lines for your system.
- rem -- set SOMDRIVE=C:
- rem -- set SOMBASE=%SOMDRIVE%\som
- rem -- Once you have set SOMBASE you can delete the following line:
-
- if "%SOMBASE%" == "" goto firstime
-
- rem -- With SOMIR set as here, sc -sir will create/update the IR file named
- rem -- SOM.IR located in the "current" directory where sc is done.
- rem -- The created/updated IR is always the last file mentioned in the SOMIR
- rem -- list. IR searches always begin at the front of the list.
-
- set SOMIR=%SOMBASE%\etc\som.ir;SOM.IR
- set SMINCLUDE=.;%SOMBASE%\include;
- set INCLUDE=.;%SOMBASE%\include;%INCLUDE%
- set DPATH=%SOMBASE%\msg;%DPATH%
- set LIB=.;%SOMBASE%\lib;%LIB%
- set SC=sc
- set PATH=%SOMBASE%\bin;%PATH%
- echo Setup SOM environment with SOMBASE = %SOMBASE%
- goto end
-
- :firstime
- echo Edit SOMENV.BAT or AUTOEXEC.NT to set SOMBASE.
- goto end
-
- :end
-
-
-
-