.PHONY: clean
CFLAGS ?= -Wall -g

all: mimasm

mimasm: mimasm.c

clean:
	rm mimasm
