Carry the amalgamated sqlite3 around with volta, rather than requiring
it to be installed on the system -- making volta a zero dependency
compile. Add some more Makefile hacks to get things consistently
building across OSX, FreeBSD, and Ubuntu. (There may be more later, but
I'll deal with those then.)
--- vim: set noet nosta sw=4 ts=4 ft=sql:
BEGIN;
DROP TABLE IF EXISTS rules;
CREATE TABLE rules (
redir TINYINT NOT NULL DEFAULT 0 CHECK( redir IN (0,1,2) )
);
COMMIT;