info:
	cat README

install:
	psql ${PGSQL_OPT} ${DATABASE} < snippet.sql
	psql ${PGSQL_OPT} ${DATABASE} < error.sql
	psql ${PGSQL_OPT} ${DATABASE} < populate_error.sql
	echo USER is ${USER}
	echo ADMIN is ${ADMIN}
	sed ' s/USER/${USER}/' grant.sql | sed 's/ADMIN/${ADMIN}/' > grant.real
	psql ${PGSQL_OPT} ${DATABASE} < grant.real
	rm grant.real

clean:
	psql ${PGSQL_OPT} ${DATABASE} < clean.sql

