24 lines
909 B
Batchfile
Executable File
24 lines
909 B
Batchfile
Executable File
@echo off
|
|
@echo.
|
|
@echo =============================================================================
|
|
@echo === PG3 ProjGen : Makefile.txt recursive generation (IronRuby) ===
|
|
@echo === https://devstar.rockstargames.com/wiki/index.php/Dev:Project_builder3 ===
|
|
@echo.
|
|
|
|
call setenv > nul
|
|
|
|
REM -----------------------------------------------------------------------------------------------------
|
|
REM Call an ironruby script that recursively scans for makefile.bat files
|
|
REM - it then produces a series of local *.makefile files.
|
|
REM -----------------------------------------------------------------------------------------------------
|
|
|
|
setlocal
|
|
call %RS_TOOLSROOT%\ironlib\prompt.bat %RS_TOOLSIR% %RS_TOOLSROOT%/ironlib/util/projGen/generate_makefiles.rb
|
|
endlocal
|
|
|
|
@echo.
|
|
@echo === PG3 Generate Makefiles Complete ===
|
|
@echo =======================================
|
|
@echo.
|
|
|
|
:END |