blob: bf521df47acf6e8b7ddb4ff1409a9b1560585380 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
FONTNAME=Putnik
OUT_DIR=fonts
UFO_SRC=sources/$(FONTNAME).ufo
TTF=fonts/ttf/$(FONTNAME).ttf
OTF=fonts/otf/$(FONTNAME).otf
all: ttf otf
ttf: $(TTF)
$(TTF): $(UFO_SRC)
fontmake -u $(UFO_SRC) -o ttf --output-dir fonts/ttf/
otf: $(OTF)
$(OTF): $(UFO_SRC)
fontmake -u $(UFO_SRC) -o otf --output-dir fonts/otf/
clean:
-rm $(TTF) $(OTF)
.PHONY: clean
|