aboutsummaryrefslogtreecommitdiffstats
path: root/ukarpanghooth/Makefile
blob: 60c21935a72855ee2215131055a7d6ab11fb3fd8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
SRC = ukarpanghooth.ufo
OTF = output/${SRC:.ufo=.otf}
WOFF2 = output/${SRC:.ufo=.woff2}

all: ${OTF} ${WOFF2}

${OTF}: ${SRC}
	fontmake --output-dir output -o otf -u ${SRC}

${WOFF2}: ${OTF}
	fonttools ttLib.woff2 compress -o $@ ${OTF}

clean:
	rm -f ${OTF} ${WOFF2}

.PHONY: clean