diff options
author | pdp8 <pdp8@pdp8.info> | 2022-08-22 00:52:15 +0200 |
---|---|---|
committer | pdp8 <pdp8@pdp8.info> | 2022-08-22 00:52:15 +0200 |
commit | e3c672f4648997dbe00624e09c63c990a8ea3596 (patch) | |
tree | 2b81023c89da84b09188d9bbbcc3d907faf8df6f /snippets/Fork-Awesome-1.2.0/src/icons/Makefile | |
parent | 28792e4d504d59b5aeab70d66ea6be51c9c683b1 (diff) |
audio and video rendering, Fork-Awesome-1.2.0 included
Diffstat (limited to 'snippets/Fork-Awesome-1.2.0/src/icons/Makefile')
-rw-r--r-- | snippets/Fork-Awesome-1.2.0/src/icons/Makefile | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/snippets/Fork-Awesome-1.2.0/src/icons/Makefile b/snippets/Fork-Awesome-1.2.0/src/icons/Makefile new file mode 100644 index 0000000..e4b41ec --- /dev/null +++ b/snippets/Fork-Awesome-1.2.0/src/icons/Makefile @@ -0,0 +1,23 @@ +FA_ROOT_FONTS_DIR = ../../fonts +FA_FONTCUSTOM_OUTPUT_DIR = ./forkawesome + +build: + @echo "Cleaning up SVG files..." + npx svgo --quiet --pretty --config=svgo_config.json --folder=svg + + @echo "Compiling Icons into a ForkAwesome fonts..." + bundle exec fontcustom compile + + @echo "Copying builds to root folder (package release)..." + cp ${FA_FONTCUSTOM_OUTPUT_DIR}/forkawesome.eot ${FA_ROOT_FONTS_DIR}/forkawesome-webfont.eot + cp ${FA_FONTCUSTOM_OUTPUT_DIR}/forkawesome.svg ${FA_ROOT_FONTS_DIR}/forkawesome-webfont.svg + cp ${FA_FONTCUSTOM_OUTPUT_DIR}/forkawesome.ttf ${FA_ROOT_FONTS_DIR}/forkawesome-webfont.ttf + cp ${FA_FONTCUSTOM_OUTPUT_DIR}/forkawesome.woff ${FA_ROOT_FONTS_DIR}/forkawesome-webfont.woff + cp ${FA_FONTCUSTOM_OUTPUT_DIR}/forkawesome.woff2 ${FA_ROOT_FONTS_DIR}/forkawesome-webfont.woff2 + + @echo "done." + +default: + build + +.PHONY: build |