TARGET=adt_view

all : 
	ghc --make Main.hs -o $(TARGET)

clean: 
	rm -rf *.hi
	rm -rf *.o
	rm -rf $(TARGET)
	rm -rf $(TARGET).exe