15 lines
320 B
Makefile
15 lines
320 B
Makefile
all: test-ttf
|
|
version:= 2.95.4
|
|
|
|
test: test-ttf
|
|
@echo "----------Testing actual-output with expected-output----------"
|
|
python3 auto_test.py std-test-out.txt /usr/share/fonts/lohit-devanagari/Lohit-Devanagari.ttf
|
|
|
|
|
|
clean: cleanall
|
|
rm -f *.ttf *.eot *.woff
|
|
rm -rf *.tar.gz
|
|
rm -rf lohit-devanagari*
|
|
|
|
.PHONY: test-ttf
|