From b7a2bb3b0316e4dfd0ee3f2f78938c3d590034f1 Mon Sep 17 00:00:00 2001 From: Stefan `Sec` Zehl Date: Sat, 14 May 2011 22:23:55 +0200 Subject: [PATCH] Modiify font list. Also activate C99 compiler --- lcd/Makefile | 16 +++------------- 1 file changed, 3 insertions(+), 13 deletions(-) diff --git a/lcd/Makefile b/lcd/Makefile index 479666a..012227f 100644 --- a/lcd/Makefile +++ b/lcd/Makefile @@ -9,22 +9,12 @@ TARGET = LPC13xx OBJS = OBJS += smallfonts.o -OBJS += dejavusans9.o -OBJS += dejavusansbold9.o -OBJS += dejavusanscondensed9.o -OBJS += dejavusansmono8.o -OBJS += dejavusansmonobold8.o -OBJS += veramono11.o -OBJS += veramono9.o -OBJS += veramonobold11.o -OBJS += veramonobold9.o - -OBJS += vera11.o OBJS += vera17.o -OBJS += vera23.o +OBJS += comic15.o OBJS += display.o OBJS += render.o +OBJS += decoder.o ########################################################################## # GNU GCC compiler prefix and location @@ -63,7 +53,7 @@ CPU_TYPE = cortex-$(CORTEX_TYPE) # Compiler settings, parameters and flags ########################################################################## -CFLAGS = -c -g -Os $(INCLUDE_PATHS) -Wall -mthumb -ffunction-sections -fdata-sections -fmessage-length=0 -mcpu=$(CPU_TYPE) -DTARGET=$(TARGET) -fno-builtin +CFLAGS = -std=c99 -c -g -Os $(INCLUDE_PATHS) -Wall -mthumb -ffunction-sections -fdata-sections -fmessage-length=0 -mcpu=$(CPU_TYPE) -DTARGET=$(TARGET) -fno-builtin LDFLAGS = -nostartfiles -mthumb -mcpu=$(CPU_TYPE) -Wl,--gc-sections all: libfont.a