EXE = .exe
HFLAGS = -O

all : mrifk$(EXE)

mrifk$(EXE) : Mrifk*.hs
	ghc --make -fglasgow-exts -o $@ ${HFLAGS} Mrifk.hs
	strip $@
