1
2PROG  = fastDraw
3SOURCES = FastDraw.hs
4
5$(PROG) : $(SOURCES)
6	$(HC) --make $< -o $@ $(HCFLAGS)
7
8clean:
9	rm -f $(SOURCES:.hs=.hi) $(SOURCES:.hs=.o) $(PROG)
10
11HC=ghc
12