#!/usr/bin/env bash

./mbc $1 > a.s &&
as -g --32 -o a.o a.s &&
ld -g -m elf_i386 -o a.out a.o libmb.a
