blob: 3783d4f6c19255c82d313315d47b0a68e9b68af8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# SPDX-License-Identifier: AGPL-3.0-only
# SPDX-FileContributor: Runxi Yu <https://runxiyu.org>
.PHONY: clean version.go man
CFLAGS = -Wall -Wextra -Werror -pedantic -std=c99 -D_GNU_SOURCE
MAN_PAGES = forge.5 hookc.1
forge: version.go hookc/*.c hookc/hookc man # TODO
go mod vendor
go build .
man: $(MAN_PAGES:%=man/%.html) $(MAN_PAGES:%=man/%.txt)
man/%.html: man/%
mandoc -Thtml -O style=./mandoc.css $< > $@
man/%.txt: man/% utils/colb
mandoc $< | ./utils/colb > $@
utils/colb: utils/colb.c
hookc/hookc:
version.go:
printf 'package main\n\nconst VERSION = "%s"\n' `git describe --tags --always --dirty` > $@
clean:
$(RM) forge version.go vendor
|