mirror of
https://github.com/ioquake/jedi-academy.git
synced 2024-11-15 09:11:22 +00:00
20 lines
273 B
Batchfile
20 lines
273 B
Batchfile
|
echo off
|
||
|
|
||
|
REM del /q vm
|
||
|
REM rww - removed this.. point of makefile is not have to rebuild all of it
|
||
|
|
||
|
mkdir vm
|
||
|
|
||
|
del vm\bg_lib.asm
|
||
|
asm2mak ui makefile
|
||
|
make ui
|
||
|
|
||
|
cd vm
|
||
|
|
||
|
mkdir "..\..\base\vm"
|
||
|
copy *.map "..\..\base\vm"
|
||
|
copy *.qvm "..\..\base\vm"
|
||
|
|
||
|
:quit
|
||
|
cd ..
|