12 lines
112 B
Batchfile
12 lines
112 B
Batchfile
|
#!/bin/bash 2>nul || goto :windows
|
||
|
|
||
|
sh ../MAKE.bat demos
|
||
|
|
||
|
exit
|
||
|
|
||
|
:windows
|
||
|
|
||
|
pushd ..
|
||
|
call MAKE.bat demos %*
|
||
|
popd
|