]> git.immae.eu Git - perso/Immae/Projets/Cryptomonnaies/Cryptoportfolio/Front.git/blobdiff - cmd/web/Makefile
Add fontello icons.
[perso/Immae/Projets/Cryptomonnaies/Cryptoportfolio/Front.git] / cmd / web / Makefile
index 85bba5bdfa3c48ed3625469c8e69bf4863c7ed3f..02ff826d6eca77c7d7261edc59b9fe6e8af4e64f 100644 (file)
@@ -6,15 +6,14 @@ SRC_DIR=js
 BUILD_DIR=build/js
 JSX_SRC= header_footer.jsx main.jsx signup.jsx signin.jsx otp.jsx poloniex.jsx password_reset.jsx change_password.jsx
 JS_SRC= cookies.js app.js api.js
-STATIC_FILES= index.html style.css
+STATIC_FILES= index.html style.css fontello.css
+STATIC_FILES+=$(addprefix fonts/, fontello.eot fontello.svg fontello.ttf fontello.woff fontello.woff2)
 JSX_OBJS=$(addprefix $(BUILD_DIR)/,$(JSX_SRC:.jsx=.js))
 JS_OBJS=$(addprefix $(BUILD_DIR)/,$(JS_SRC))
 ICONS=$(addprefix $(STATIC_BUILD_DIR)/icons/black/, $(notdir $(wildcard static/icons/black/*.svg)))
 ICONS+=$(addprefix $(STATIC_BUILD_DIR)/icons/color/, $(notdir $(wildcard static/icons/color/*.svg)))
 STATIC_BUILD_DIR=build/static
 
-$(info $(ICONS))
-
 install:
        node --version
        npm --version
@@ -33,6 +32,7 @@ $(STATIC_BUILD_DIR):
        mkdir -p $@
        mkdir -p $@/icons/black
        mkdir -p $@/icons/color
+       mkdir -p $@/fonts
 
 $(BUILD_DIR)/%.js: $(SRC_DIR)/%.jsx
        eslint --fix $<
@@ -59,3 +59,38 @@ release: $(STATIC_BUILD_DIR) build/webapp.tar.gz
 clean:
        rm -rf build
        rm -rf node_modules
+
+
+FONT_DIR = ./static/fontello
+FONTELLO_HOST ?= http://fontello.com
+
+fontopen:
+       @if test ! `which curl` ; then \
+               echo 'Install curl first.' >&2 ; \
+               exit 128 ; \
+               fi
+       curl --silent --show-error --fail --output .fontello \
+               --form "config=@fontello_config.json" \
+               ${FONTELLO_HOST}
+       x-www-browser ${FONTELLO_HOST}/`cat .fontello`
+
+
+fontsave:
+       @if test ! `which unzip` ; then \
+               echo 'Install unzip first.' >&2 ; \
+               exit 128 ; \
+               fi
+       @if test ! -e .fontello ; then \
+               echo 'Run `make fontopen` first.' >&2 ; \
+               exit 128 ; \
+               fi
+       rm -rf .fontello.src .fontello.zip
+       curl --silent --show-error --fail --output .fontello.zip \
+               ${FONTELLO_HOST}/`cat .fontello`/get
+       unzip .fontello.zip -d .fontello.src
+       rm -rf ${FONT_DIR}
+       mv `find ./.fontello.src -maxdepth 1 -name 'fontello-*'` ${FONT_DIR}
+       rm -rf .fontello.src .fontello.zip
+       cp ${FONT_DIR}/font/* static/fonts/
+       cp ${FONT_DIR}/css/fontello-codes.css static/fontello.css
+       rm -rf ${FONT_DIR}
\ No newline at end of file