packages feed

gtk-serialized-event-0.11.0: demo/Makefile

PROGS  = main 
SOURCES = Main.hs

all : $(PROGS)

main : Main.hs
	$(HC) --make -threaded $< -o $@ $(HCFLAGS)

clean:
	rm -f $(SOURCES:.hs=.hi) $(SOURCES:.hs=.o) $(PROGS)

HC=ghc