X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=cmd%2Fweb%2FMakefile;h=3b100d16d8e43656bcaa610c5c203957a82fb7f2;hb=16e43cc77935a979c48e75f1ec8ed792952a4ae8;hp=c5d5d62b99233c700b359fe04d129d1968245362;hpb=85545aba62546f219a9c9730945511412a3174ef;p=perso%2FImmae%2FProjets%2FCryptomonnaies%2FCryptoportfolio%2FFront.git diff --git a/cmd/web/Makefile b/cmd/web/Makefile index c5d5d62..3b100d1 100644 --- a/cmd/web/Makefile +++ b/cmd/web/Makefile @@ -4,17 +4,16 @@ export PATH := $(PATH):./node_modules/.bin SRC_DIR=js BUILD_DIR=build/js -JSX_SRC= main.jsx signup.jsx signin.jsx otp.jsx poloniex.jsx password_reset.jsx change_password.jsx +JSX_SRC= header_footer.jsx main.jsx signup.jsx signin.jsx otp.jsx poloniex.jsx password_reset.jsx change_password.jsx account.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