--- /dev/null
+#!/usr/bin/make -f
+
+CODEPOINT := \\([0-9a-fA-F]{2,5})
+
+.DELETE_ON_ERROR:
+.SECONDARY:
+.PHONY: all clean superclean
+
+FORMATS := ttf woff
+FONTSTANDARD := $(addprefix fontstandard.,$(FORMATS))
+
+FAVERSION ?= v4.2.0
+URL := https://github.com/FortAwesome/Font-Awesome/raw/$(FAVERSION)
+
+SUBVERSION := 1
+VERSION := $(shell echo $(FAVERSION) | sed -E 's/[^0-9]//g').$(SUBVERSION)
+FONTAWESOME := FontAwesome_$(VERSION).otf
+VARIABLES := variables_$(VERSION).less
+
+all: $(FONTSTANDARD)
+
+FONTFORGE ?= fontforge
+CONVERT.ttf.woff := echo 'Open($$1); Generate($$2)' | $(FONTFORGE)
+
+fontstandard.ttf: $(FONTAWESOME) fontstandard.fontforge
+ $(FONTFORGE) $< $@ < fontstandard.fontforge
+
+%.woff: %.ttf
+ $(CONVERT.ttf.woff) $< $@
+
+$(FONTAWESOME):
+ wget -O $@ $(URL)/fonts/FontAwesome.otf
+
+$(VARIABLES):
+ wget -O $@ $(URL)/less/variables.less
+
+%.fontforge: $(VARIABLES) %.remove.txt %.preamble.txt %.remap.txt
+ echo 'Open($$1); Reencode("unicode4");' > $@
+ sed -E 's/__VERSION__/$(VERSION)/' < $*.preamble.txt >> $@
+ grep -E "@fa-var-("$$(grep -v '^#' $*.remove.txt \
+ | paste -sd '|' -)")[-a-z]*:" $(VARIABLES) \
+ | sed -E 's/.*$(CODEPOINT).*/SelectMore(0u\1);/g' >> $@
+ echo 'DetachAndRemoveGlyphs();' >> $@
+
+ grep -v '^#' $*.remap.txt | while read line; do \
+ a=( $$line ); \
+ (grep -E -m 1 "@fa-var-$${a[1]}:" $(VARIABLES) \
+ || echo "$${a[1]} not found." >&2) \
+ | sed -E 's/.*$(CODEPOINT).*/Select(0u\1); CopyReference(); Select(0u'$${a[0]}'); Paste();/g' >> $@ \
+ ; done
+
+ echo 'Generate($$2)' >> $@
+
+clean:
+ $(RM) fontstandard.fontforge
+ $(RM) $(FONTSTANDARD)
+
+superclean: clean
+ $(RM) $(FONTAWESOME)
+ $(RM) $(VARIABLES)
--- /dev/null
+# Font Standard
+
+Font Standard is a suite of pictographic icons for easily scalable
+vector graphics on websites. Those icons are assigned, when possible,
+to a proper public Unicode codepoint, and do not include
+questionably-licensed corporate logos, Libertarian tulips, or some
+bullshit web service you'll forget about in less than a year.
+
+Font Standard is based on [Font Awesome][], which does not live up to
+its name. It is about 40% smaller than Font Awesome (even smaller if
+you no longer use FA's custom CSS), and usable in more situations.
+
+## Building
+
+Install [FontForge][], then at a command line, run
+
+ make all
+
+Now you'll get `fontstandard.ttf` and `fontstandard.woff`. These can
+be used as drop-in replacements for Font Awesome, or independently as
+a font with many useful Unicode glyphs.
+
+## Compatibility
+
+Font Standard is compatible with Font Awesome, as long as you are not
+using any [Brand Icons][] or its awful gender icons. (If you are using
+any of these, reconsider the life choices that brought you to do so.)
+
+Font Standard is _also_ compatible with regular HTML, and
+you can just assign a CSS font family and type Unicode characters like
+♫ or ☕ and they will render appropriately.
+
+Font Standard mappings may change in future updates. For example, the
+Font Awesome "bolt" icon (U+F0E7) is mapped to U+2301 (Electric
+Arrow), U+26a1 (High Voltage Sign), and 1+F5F2 (Lightning Mood). If a
+more "arrow-like" or "sign-like" bolt appears in Font Awesome in the
+future, it might take over those slots.
+
+## Known Issues
+
+Some characters may be mis-mapped. Some characters are probably
+suitable for mapping but are not yet. Let me know if you have
+suggestions.
+
+## License
+
+The scripts that build Font Standard are hereby deeded to the
+[public domain][]. The person who associated a work with this deed has
+dedicated the work to the public domain by waiving all of his or her
+rights to the work worldwide under copyright law, including all
+related and neighboring rights, to the extent allowed by law. You can
+copy, modify, distribute and perform the work, even for commercial
+purposes, all without asking permission.
+
+No claim is made on the "Font Standard" name.
+
+[Font Awesome][] by Dave Gandy is licensed under the [SIL OFL 1.1][] with
+the reserved name "FontAwesome".
+
+[Font Awesome]: http://fontawesome.io/
+[FontForge]: http://fontforge.org/
+[Brand Icons]: http://fortawesome.github.io/Font-Awesome/icons/#brand
+[SIL OFL 1.1]: http://scripts.sil.org/OFL
+[public domain]: https://creativecommons.org/publicdomain/zero/1.0/
--- /dev/null
+SetTTFName(0x409,1,"FontStandard");
+SetTTFName(0x409,2,"Regular");
+SetTTFName(0x409,3,"FontStandard");
+SetTTFName(0x409,4,"FontStandard");
+SetTTFName(0x409,5,"Version __VERSION__");
+SetTTFName(0x000,6,"FontStandard");
+SetTTFName(0x409,6,"FontStandard");
+SetTTFName(0x409,7,"");
+SetTTFName(0x409,8,"Joe Wreschnig");
+SetTTFName(0x409,10,"A modification of Font Awesome to use standard Unicode codepoints and remove ads.");
+SetTTFName(0x409,11,"http://git.korewanetadesu.com/fontstandard.git");