summaryrefslogtreecommitdiff
path: root/Makefile
blob: 7a56080d204e4f52a66400effac1f69bf060dc3d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
google:
	@echo " "
	@echo "================================================================="
	@echo "Updating fonts for Google starts on "`date`
	@echo "================================================================="
	@echo " "
	find googlefontdirectory \( -name '*.ttf' -or -name '*.otf' -or -name '*.glyphs' \) -delete
	cp ttf/Montserrat-*.ttf googlefontdirectory/montserrat
	cp otf/Montserrat-*.otf googlefontdirectory/montserrat/src
	cp "Montserrat.glyphs" googlefontdirectory/montserrat/src
	cp ttf/MontserratAlternates-*.ttf googlefontdirectory/montserratalternates
	cp otf/MontserratAlternates-*.otf googlefontdirectory/montserratalternates/src
	cp "Montserrat Alternates.glyphs" googlefontdirectory/montserratalternates/src
	@echo " "
	@echo "================================================================="
	@echo "Fonts updated on "`date`
	@echo "================================================================="
	@echo " "


.PHONY: google