@echo off rem all.btm, does everything to create new set of indexes rem JET is not working with QF, use jar set runwith=jar if "%runwith" == "" set runwith=jet echo Building indexes... echo run qf with %runwith% rem Parse to create raw files, the sort and create ser files and indexes. rem Macro expansions and compacting is already done. rem Leaves results in e:\mindprod\jgloss\forseesort.ser. rem Also produce indexes as E:\mindprod\include\jgloss\*.table.html rem ready to be include in a shell for each index file. E: CD \com\mindprod\qf if "%runwith" == "jet" .AND. not exist qf.exe goto bypass if "%runwith" == "jar" .AND. not exist qf.jar goto bypass if "%runwith" == "class" .AND. not exist com.mindprod.qf.QF gotobypass if "%runwith" == "jet" qf.exe %configuration if "%runwith" == "jar" java.exe %JAVA_OPTIONS -ea -jar qf.jar %configuration if "%runwith" == "class" java.exe %JAVA_OPTIONS -ea com.mindprod.qf.QF %configuration if not errorlevel 1 goto OK echo index generation failed. pause exit :OK :bypass rem -30-