spgens.bat 160 B

12345678910111213
  1. @echo off
  2. if errorlevel 0 (
  3. FOR /d %%i in (mod_*) DO (
  4. cd %%i
  5. FOR %%j in (*.xml) DO (
  6. echo %%j
  7. echo processing %%~fj
  8. call ..\..\Tool\spgen.bat %%~fj
  9. )
  10. cd..
  11. )
  12. )