all: main

main: hsh.hs
	ghc -O2 -Wall -o hsh hsh.hs

clean:
	rm -f hsh hsh.hi hsh.o
