.PHONY: clean
CFLAGS ?= -Wall -g

all: mimasim

mimasim: mimasim.c

clean:
	rm mimasim
