forked from jenskutilek/homecomputer-fonts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
66 lines (53 loc) · 1.51 KB
/
Copy pathMakefile
File metadata and controls
66 lines (53 loc) · 1.51 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
help:
@echo "###"
@echo "# Build targets for the Homecomputer fonts"
@echo "###"
@echo
@echo " make build: Builds the fonts and places them in the fonts/ directory"
@echo " make test: Tests the fonts with fontspector"
@echo " make proof: Creates HTML proof documents in the proof/ directory"
@echo " make images: Creates PNG specimen images in the documentation/ directory"
@echo
.PHONY: build
build:
$(MAKE) -C Sixtyfour $@
$(MAKE) -C Workbench $@
.PHONY: .init.stamp
.init.stamp:
$(MAKE) -C Sixtyfour $@
$(MAKE) -C Workbench $@
.PHONY: test
test:
$(MAKE) -C Sixtyfour $@
$(MAKE) -C Workbench $@
.PHONY: proof
proof:
$(MAKE) -C Sixtyfour $@
$(MAKE) -C Workbench $@
.PHONY: images
images:
$(MAKE) -C Sixtyfour $@
$(MAKE) -C Workbench $@
.PHONY: clean
clean:
$(MAKE) -C Sixtyfour $@
$(MAKE) -C Workbench $@
.PHONY: dist-clean
dist-clean:
$(MAKE) -C Sixtyfour $@
$(MAKE) -C Workbench $@
venv: venv/touchfile
venv/touchfile: requirements.txt
test -d venv || python3 -m venv venv
. venv/bin/activate; pip3 install -Ur requirements.txt
touch venv/touchfile
update-project-template:
npx update-template https://github.com/googlefonts/googlefonts-project-template/
update: venv
venv/bin/pip install --upgrade pip-tools
# See https://pip-tools.readthedocs.io/en/latest/#a-note-on-resolvers for
# the `--resolver` flag below.
venv/bin/pip-compile --upgrade --verbose --resolver=backtracking requirements.in
venv/bin/pip-sync requirements.txt
git commit -m "Update requirements" requirements.txt
git push