PlatformIO package of the Teensy core framework compatible with GCC 10 & C++20
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

Makefile 236B

3 lat temu
123456789101112
  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