GHC=ghc -W -fwarn-unused-binds

all: puttyget puttymget puttyapply

.PHONY: all puttyget puttymget puttyapply install

puttyget:
	$(GHC) --make -o puttyget PuttyGet.hs

puttymget:
	$(GHC) --make -o puttymget PuttyMget.hs

puttyapply:
	$(GHC) --make -o puttyapply PuttyApply.hs

install: all
	cp *.exe /usr/local/darcs
