aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 5c1e856251c8c49c93bd19e619af1ea7b27811d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
LDLIBS += -lsqlite3
C = $(shell ls *.c)
H = $(shell ls *.h)
TPL = $(shell ls t/*.t | sed 's/$$/c/')

.SUFFIXES: .t .tc

cforum: $(C) $(H) $(TPL)
	$(CC) $(CFLAGS) $(LDFLAGS) $(LDLIBS) -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, full, hash NOT NULL, PRIMARY KEY (name));"
	sqlite3 db "INSERT INTO users values('john', 'John Ankarström', '123');"
	sqlite3 db "CREATE TABLE posts(parent INT, 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(NULL, 1, 1462137896, NULL, 'Hello World!', 'This is the first post.');"
	sqlite3 db "INSERT INTO posts values(1, 1, 1462138896, NULL, 'Re: Hello World!', 'This is the second post!');"
	sqlite3 db "CREATE TABLE attachments(post INT NOT NULL, name NOT NULL, description, mime NOT NULL, data BLOB, FOREIGN KEY (post) REFERENCES posts(oid));"
	sqlite3 db "$$(printf "INSERT INTO attachments values(1, 'example', 'Some example shell code.', 'text/plain', '#!/bin/sh\necho Hello World!');")"