forked from fontello/fontello
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
70 lines (53 loc) · 1.84 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
PROJECT := $(notdir ${PWD})
TMP_PATH := /tmp/${PROJECT}-$(shell date +%s)
REMOTE_NAME ?= origin
REMOTE_REPO ?= $(shell git config --get remote.${REMOTE_NAME}.url)
FONTS += entypo
FONTS += awesome-uni.font
FONTS += iconic-uni.font
FONTS += websymbols-uni.font
FONT_CONFIGS = $(foreach f,$(FONTS),src/${f}/config.yml)
help:
echo "make help - Print this help"
echo "make app-start - Run Fontomas server"
echo "make rebuild-fonts - Rebuild embedded fonts"
echo "make dev-setup - Install deps for development"
echo "make lint - Lint sources with JSHint"
echo "make gh-pages - Build and push the project into gh-pages branch"
rebuild-fonts:
mkdir -p assets/embedded_fonts
for config in $(FONT_CONFIGS); do \
bin/font_copy_to_assets.py -c "$$config" -o assets/embedded_fonts; \
done
bin/build_embedded_fonts_js.py -i assets/embedded_fonts -o client/fontomas/embedded_fonts.js $(FONT_CONFIGS)
bin/build_embedded_fonts_css.py -o assets/embedded_fonts/fontface-embedded.css $(FONT_CONFIGS)
dev-setup:
rm -rf node_modules
npm install
npm install -g jshint
lint:
if test ! `which jshint` ; then \
echo "You need 'jshint' installed in order to run lint." >&2 ; \
exit 128 ; \
fi
jshint . --show-non-errors
test: lint
gh-pages:
@if test -z ${REMOTE_REPO} ; then \
echo 'Remote repo URL not found' >&2 ; \
exit 128 ; \
fi
cp -r ./ ${TMP_PATH} && \
touch ${TMP_PATH}/.nojekyll
cd ${TMP_PATH} && \
git init && \
git add . && \
git commit -q -m 'refreshed at gh-pages'
cd ${TMP_PATH} && \
git remote add remote ${REMOTE_REPO} && \
git push --force remote +master:gh-pages
rm -rf ${TMP_PATH}
todo:
grep 'TODO' -n -r ./lib 2>/dev/null || test true
.PHONY: help rebuild-fonts dev-setup lint gh-pages todo
.SILENT: help rebuild-fonts dev-setup lint todo