mirror of
https://git.sr.ht/~lattis/muon
synced 2026-01-30 11:25:37 +00:00
18 lines
337 B
Batchfile
18 lines
337 B
Batchfile
:: SPDX-FileCopyrightText: Stone Tickle <lattis@mochiro.moe>
|
|
:: SPDX-License-Identifier: GPL-3.0-only
|
|
|
|
@echo off
|
|
setlocal
|
|
cd /D "%~dp0"
|
|
|
|
if "%~1" == "" goto :usage
|
|
|
|
set dir=%1
|
|
if not exist "%dir%" mkdir "%dir%"
|
|
|
|
call cl /nologo /Zi /Iinclude src/amalgam.c /link /out:"%dir%/muon-bootstrap.exe"
|
|
goto :eof
|
|
|
|
:usage
|
|
echo usage: %0 build_dir
|