# Simple Makefile I wrote for compiling the reference interpreter

CC=gcc
SRC=mbi.c
TARGET=mbi
CFLAGS=-O2
LDFLAGS=

all:
	$(CC) $(SRC) $(CFLAGS) -o $(TARGET) $(LDFLAGS)

clean:
	rm -vf $(TARGET)

