all: compile

compile:
	ghc -O3 Main.hs

profiling:
	ghc -O3 -prof -fprof-auto -rtsopts Main.hs

clean:
	rm -f *.hi *.o Main
