aboutsummaryrefslogtreecommitdiff
path: root/.fonts/Makefile
blob: 12d4224dfc209bf0f6b883fb34930f93e9d44982 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
fonts = InconsolataHellenic.otf \
	ubuntu-font-family-0.80 \
	Courier-Prime \
	Fell \
	Vollkorn

all: $(fonts)

clean:
	rm -f $(fonts)

install: $(fonts)
	[ -d ../build/.fonts ] || mkdir -p ../build/.fonts
	rsync -av $^ ../build/.fonts/

# Requires fontforge
InconsolataHellenic.otf: Inconsolata-Hellenic/Inconsolata-Hellenic.sfd convert.pe
	fontforge -script convert.pe $<
	mv -f $(<:.sfd=.otf) $@

.PHONY: all clean install