PlatformIO package of the Teensy core framework compatible with GCC 10 & C++20
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
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