Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
latex2html/config.bat
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
43 lines (31 sloc)
1.11 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@ECHO OFF | |
REM this is a DOS batch file | |
REM *vital* This is the path to the perl interpreter | |
set PERL=perl | |
REM ------------------------------------------------------------------------- | |
ECHO Starting Configuration... | |
IF EXIST cfgcache.pm DEL cfgcache.pm | |
%PERL% config\config.pl PERL=%PERL% %1 %2 %3 %4 %5 %6 %7 %8 %9 | |
IF NOT EXIST cfgcache.pm GOTO ERROR | |
REM ------------------------------------------------------------------------- | |
ECHO Starting build... | |
ECHO ... building latex2html | |
%PERL% config\build.pl -x latex2html | |
IF ERRORLEVEL 1 GOTO ERROR | |
ECHO ... building pstoimg | |
%PERL% config\build.pl -x pstoimg | |
IF ERRORLEVEL 1 GOTO ERROR | |
ECHO ... building texexpand | |
%PERL% config\build.pl -x texexpand | |
IF ERRORLEVEL 1 GOTO ERROR | |
ECHO ... building configuration module | |
%PERL% config\build.pl l2hconf.pm | |
IF ERRORLEVEL 1 GOTO ERROR | |
GOTO OK | |
REM ------------------------------------------------------------------------- | |
:ERROR | |
ECHO An error has occured, aborting | |
REM ------------------------------------------------------------------------- | |
:OK | |
ECHO Configuration procedure finished | |
:END | |