summaryrefslogtreecommitdiff
path: root/tnslc/run.ps1
blob: 15b78f30ca765ca9afd5130b5191d0b7bfe5c662 (plain)
1
2
3
4
5
6
7
8
if ($args.Length -gt 0) {
    ..\tint.exe -flags """$args""" -in tnslc.tnsl
    nasm -f win64 -o "$($args[0]).obj" "$($args[0]).asm"
    gcc -o "$($args[0]).exe" "$($args[0]).obj"
} else {
    Write-Host "Usage: run [file to compile]";
    Write-Host "";
}