home *** CD-ROM | disk | FTP | other *** search
- echo off
- echo .
- echo ╒══════════════════════════════════════════════════════════════════════════╕
- echo │ fxOBJs: Library Object Module Extractor PCX Effects 1.0x │
- echo │ Copyright (c) Genus Microprogramming, Inc. 1988-89 All Rights Reserved. │
- echo ╘══════════════════════════════════════════════════════════════════════════╛
- echo .
- if '%1' == '' goto HELP
- if exist %1 goto EXTRACT
- if exist %1.lib goto EXTRACT
- goto NOTFOUND
- :EXTRACT
- echo . Extracting PCX Effects OBJ files ...
- echo .
- lib %1 *fxse *fxvi *fxve *fxvw *fxvl *fxvs *fxvc;
- if ERRORLEVEL 1 goto ERROR
- lib %1 *fxva *fxvr *fxvx *fxvd *fxvp *fxvn *fxdk;
- if ERRORLEVEL 1 goto ERROR
- lib %1 *fxtp *fxpc *fxsr *fxfi;
- if ERRORLEVEL 1 goto ERROR
- goto DONE
- :HELP
- echo ╒╡ fxOBJs Help ╞═══════════════════════════════════════════════════════════╕
- echo │ │
- echo │ fxOBJs libname │
- echo │ │
- echo │ Where 'libname' is the name of the F/X library you wish to extract the │
- echo │ OBJ modules from. The modules will be stored in the current directory. │
- echo │ │
- echo │ NOTE: The utility LIB.EXE must be in the current directory, or in the │
- echo │ the current system path. │
- echo │ │
- echo ╘══════════════════════════════════════════════════════════════════════════╛
- goto END
- :NOTFOUND
- echo .
- echo . The library file [%1] does not exist ...
- goto END
- :ERROR
- echo .
- echo . An error occured while extracting OBJ's from [%1].
- echo .
- echo . Make sure that there is enough disk space, the library name is correct,
- echo . and the library is the correct version. The utility LIB.EXE must also
- echo . be in the current directory or path.
- echo .
- goto END
- :DONE
- echo .
- echo . Done.
- :END
- echo .
-
-