PlatformIO package of the Teensy core framework compatible with GCC 10 & C++20
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

13 行
236B

  1. all: fontconvert
  2. CC = gcc
  3. CFLAGS = -Wall -I/usr/local/include/freetype2 -I/usr/include/freetype2 -I/usr/include
  4. LIBS = -lfreetype
  5. fontconvert: fontconvert.c
  6. $(CC) $(CFLAGS) $< $(LIBS) -o $@
  7. strip $@
  8. clean:
  9. rm -f fontconvert