2024-11-25 18:42:54 +00:00
|
|
|
@echo off
|
|
|
|
setlocal
|
|
|
|
pushd "%~dp0"
|
|
|
|
|
|
|
|
if not exist ".\build" mkdir ".\build"
|
|
|
|
|
|
|
|
pushd .\build
|
|
|
|
|
2024-11-25 20:44:29 +00:00
|
|
|
set links= kernel32.lib
|
|
|
|
|
|
|
|
cl ..\src\eightysix.c /Feeightysix.exe /nologo /link %links%
|
2024-11-25 18:42:54 +00:00
|
|
|
|
|
|
|
popd .\build
|