fixedsys/Makefile
Kirill Pertsev 36b3334991 Added long right arrow --> (closes #4)
Added "less or equal" and "greater or equal" ligatures
Added support for conditional compilation using C preprocessor
  Default compilation enables =< and >= ligatures for the above
  Alt compilation enables <= (used to be fat arrow) and >= (closes #3)
2016-11-21 18:57:17 -08:00

21 lines
374 B
Makefile

COMPILE=ttx -f --recalc-timestamp
CPP=cpp
all: FSEX302.ttf FSEX302-alt.ttf
FSEX302.ttf: FSEX-default.ttx
$(COMPILE) -o $@ $<
cp $@ ~/Library/Fonts
atsutil databases -remove
rm $<
FSEX302-alt.ttf: FSEX-alt.ttx
$(COMPILE) -o $@ $<
rm $<
FSEX-default.ttx: FSEX.ttx
$(CPP) $< |grep -v "^#" > $@
FSEX-alt.ttx: FSEX.ttx
$(CPP) -DALT_LESSEQUAL $< |grep -v "^#" > $@