arduinoprojects

git clone https://git.tarina.org/arduinoprojects
Log | Files | Refs

Makefile (236B)


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