@echo off rem ************************************************************************ rem MODGENer makes models/timing rem ************************************************************************ rem These scripts expects the following environment [change paths to suit]: rem rem path += ...\machxl62;...\vantispro\;...\cygwin\bin\ rem minc_path = ...\machxl62 rem lm_license_file = ...\(flexlm?)\license.dat rem rem ************************************************************************ rem @echo on if not "%1" == "" goto oneonly for %%f in (pld1 pld2 pld3 pld4a pld4b pld5 pld6 pld7 pld8 pld9) do modgen .\%%f\%%f.fb vhd std tb r cp 25.000000 goto end :oneonly modgen .\%1\%1.fb vhd std tb r cp 25.000000 :end echo mod.bat Done! echo.