14 lines
193 B
Batchfile
14 lines
193 B
Batchfile
@echo off
|
|
setlocal
|
|
pushd "%~dp0"
|
|
|
|
if not exist ".\build" mkdir ".\build"
|
|
|
|
pushd .\build
|
|
|
|
set links= kernel32.lib
|
|
|
|
cl /Zi ..\src\eightysix.c /Feeightysix.exe /nologo /link %links%
|
|
|
|
popd .\build
|