about summary refs log tree commit diff
path: root/Makefile
blob: 226657ab7c48bd57c730f813b1d50473b73f0caa (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
33
34
35
36
37
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.$@}

openbsd: openbsd-man.tar openbsd-comp.tar
	mkdir -p $@
	${TAR} -x -f openbsd-man.tar -C $@ --strip-components ${STRIP.$@} ${FILES.$@}
	${TAR} -x -f openbsd-comp.tar -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} *.tar
tr class='nohover-highlight'> 2018-03-31Add scheme.png targetJune McEnroe 2018-03-31Generate Terminal.app color schemeJune McEnroe Colors still very much WIP, but coming along. 2018-03-31Generate basic ANSI color schemeJune McEnroe 2018-03-31Add hex output to schemeJune McEnroe 2018-03-31Add color scheme PNG generatorJune McEnroe 2018-03-31Simplify gfxx palette generationJune McEnroe 2018-03-31Switch to HSV for gfxx palette generationJune McEnroe 2018-03-30Generate default palette in gfxxJune McEnroe 2018-03-30Ignore build and cloneJune McEnroe 2018-03-30Set g:clipboard to pb{copy,paste} alwaysJune McEnroe Previously neovim would use these automatically if it found them, but now it only checks for them on macOS. pbd continues to work well. 2018-03-28Add d-_-b crateJune McEnroe