packages feed

hesql-0.0: Makefile

all: .configured
	./Setup build

clean: Setup
	./Setup clean

.configured: hesql.cabal Setup
	./Setup configure
	touch $@

Setup: Setup.hs
	ghc --make Setup.hs

install: all
	./Setup install

.PHONY: all clean install