mirror of
https://github.com/blendogames/thirtyflightsofloving.git
synced 2025-02-23 20:21:11 +00:00
15 lines
352 B
Batchfile
15 lines
352 B
Batchfile
|
IF EXIST extractfuncs.exe GOTO local
|
||
|
|
||
|
.\extractfuncs\extractfuncs *.c -o g_func_list.h g_func_decs.h
|
||
|
.\extractfuncs\extractfuncs *.c -t mmove_t -o g_mmove_list.h g_mmove_decs.h
|
||
|
GOTO end
|
||
|
|
||
|
:local
|
||
|
cd ..
|
||
|
.\extractfuncs\extractfuncs *.c -o g_func_list.h g_func_decs.h
|
||
|
.\extractfuncs\extractfuncs *.c -t mmove_t -o g_mmove_list.h g_mmove_decs.h
|
||
|
:end
|
||
|
|
||
|
pause
|
||
|
|