mirror of
https://github.com/parasyte/alt64
synced 2024-11-02 08:15:07 -04:00
15 lines
197 B
Batchfile
15 lines
197 B
Batchfile
|
@echo off
|
||
|
set env="/usr/local/libdragon"
|
||
|
|
||
|
IF %1.==. GOTO default
|
||
|
|
||
|
bash --verbose -c "export N64_INST=%env%; make %1"
|
||
|
|
||
|
GOTO end
|
||
|
|
||
|
:default
|
||
|
bash --verbose -c "export N64_INST=%env%; make"
|
||
|
|
||
|
:end
|
||
|
|
||
|
pause
|