about summary refs log tree commit diff
path: root/Makefile
blob: e52672adbde1454066560b1ab0aaf6caad8a11f1 (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
31
32
CURL ?= curl
TAR ?= tar

SYSTEMS += freebsd
SYSTEMS += linux
SYSTEMS += netbsd
SYSTEMS += openbsd
SYSTEMS += posix

all: ${SYSTEMS}

.SUFFIXES: .tar .url

.url.tar:
	${CURL} -f -o $@ "$$(cat $<)"

.tar:
	mkdir -p $@
	${TAR} -x -f $< -C $@ --strip-components ${STRIP.$@} ${FILES.$@}

FILES.freebsd = ./usr/share/man/
FILES.netbsd = ./usr/share/man/
FILES.openbsd = ./usr/share/man/

STRIP.freebsd = 4
STRIP.linux = 1
STRIP.netbsd = 4
STRIP.openbsd = 4
STRIP.posix = 1

clean:
	rm -fr ${SYSTEMS} ${SYSTEMS:=.tar}
>June McEnroe 2021-09-14Sort by title if authors matchJune McEnroe 2021-09-13Swap-remove tags as they're foundJune McEnroe 2021-09-12Replace htagml regex with strncmpJune McEnroe 2021-09-11Also defer printing comment for lone close-parensJune McEnroe 2021-09-10Publish "git-comment"June McEnroe 2021-09-10Add git comment --pretty optionJune McEnroe 2021-09-08Defer printing comment if line is blank or closing braceJune McEnroe 2021-09-08Up default min-repeat to 30 linesJune McEnroe 2021-09-08Handle dirty lines in git-commentJune McEnroe 2021-09-08Document and install git-commentJune McEnroe 2021-09-08Add repeat and all options to git-commentJune McEnroe 2021-09-08Add group threshold to git-commentJune McEnroefe74992ccd5653a738a984e47bb2699c&follow=1'>Add photo descriptions from 05-03 and 05-06June McEnroe 2024-05-21Fix = precedence in whenJune McEnroe