Revision 83 (by dpavlin, 2007/01/17 22:30:14) restructure IMDB trivia parser, added db target to create
trivia database in PostgreSQL
all:
	@echo "make index|test"


index:
	./indexer.pl

perl:
	@echo "this target moved to test"
test:
	estcmd search -vf casket/ 'blade runner'

db:
	dropdb trivia || true
	createdb trivia
	psql trivia < trivia.sql
	./db.pl

clean:
	rm -Rf trivia/* casket