-
Notifications
You must be signed in to change notification settings - Fork 4
/
Makefile
45 lines (38 loc) · 922 Bytes
/
Makefile
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
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 fontbakery"
@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 $@