PATH := ../pmas:../minulator/:$(PATH)

.PHONY: all
all: hello.min
	minulator u $<

hello.min:: hello.s font8x8.bin

%.min: %.s
	pmas $< $@

%.min: %.S
	cpp $< | pmas - $@

%.bin: %.bmp
	bmp2bin -m $< $@
