all: prettySImPL interpSImPL

HCFLAGS = -fwarn-incomplete-patterns -fwarn-unused-imports

prettySImPL: force
	ghc $(HCFLAGS) --make -o $@ PrettySImPL.hs

interpSImPL: force
	ghc $(HCFLAGS) --make -o $@ InterpSImPL.hs

clean:
	rm -f *.o *.hi prettySImPL interpSImPL

force:
