aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 4e788a9acc8d61a4fb6dce32f80801792f818f6d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
.SUFFIXES: .c .t .tc
LDFLAGS += -lsqlite3

C = cforum.c ctl.c db.c err.c query.c
TPL = t/err.tc t/foot.tc t/front.tc t/head.tc t/post.tc t/user.tc

cforum: $(C) $(TPL)
	$(CC) $(CFLAGS) $(LDFLAGS) -o cforum $(C)

.t.tc: mktpl/mktpl
	<$< mktpl/mktpl >$@

db:
	sqlite3 db "CREATE TABLE settings(key, value, PRIMARY KEY (key));"
	sqlite3 db "INSERT INTO settings values('name', 'C Forum');"
	sqlite3 db "CREATE TABLE users(name, hash NOT NULL, PRIMARY KEY (name));"
	sqlite3 db "INSERT INTO users values('john', '123');"
	sqlite3 db "CREATE TABLE posts(user INT NOT NULL, created INT NOT NULL, edited INT, subject NOT NULL, text NOT NULL, FOREIGN KEY (user) REFERENCES users(oid));"
	sqlite3 db "INSERT INTO posts values(1, 0, NULL, 'Hello World!', 'This is the first post.');"