git-svn-id: https://192.168.0.254/svn/Componentes.Terceros.jcl@16 c37d764d-f447-7644-a108-883140d013fb
14 lines
382 B
Batchfile
14 lines
382 B
Batchfile
@echo Free Pascal Compiler test...
|
|
@echo For error messages, see fpctest.err.
|
|
@echo off
|
|
@if "%1"=="" goto usage
|
|
@if not exist %1. goto invpath
|
|
@del fpctest.err
|
|
@for %%f in (common\Jcl*.pas windows\Jcl*.pas) do make file=%%f fpc=%1 -fMakefile.fpc
|
|
@goto exit
|
|
:invpath
|
|
@echo invalid path "%1"
|
|
@goto exit
|
|
:usage
|
|
@echo usage: fpctest ^<path to fpc installation^>
|
|
:exit |