From 57a51c5746dcf8a1195bfcb89dc17d1721e119d6 Mon Sep 17 00:00:00 2001 From: kristina Date: Mon, 30 May 2016 14:14:30 +0100 Subject: [PATCH] update makefiles --- Makefile | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 898bf05..b781bfb 100755 --- a/Makefile +++ b/Makefile @@ -10,9 +10,10 @@ SRCS = \ romstage.c \ sdram.c \ arm_loader.c \ + arm_monitor.c \ trap.c \ - lib/xprintf.c \ - lib/panic.c \ + lib/ee_printf.c \ + panic.c \ lib/udelay.c \ lib/memcpy.c \ chainloader_inc.s @@ -39,8 +40,8 @@ CC = $(CROSS_COMPILE)gcc AS = $(CC) OBJCOPY = $(CROSS_COMPILE)objcopy LINKFLAGS = -nostdlib -nostartfiles -CFLAGS = -c -nostdlib -std=c11 -ASFLAGS = -c -nostdlib -x assembler-with-cpp +CFLAGS = -c -nostdlib -std=c11 -fsingle-precision-constant -Wdouble-promotion -D__VIDEOCORE4__ -I./vc4_include/ +ASFLAGS = -c -nostdlib -x assembler-with-cpp -D__VIDEOCORE4__ -I./vc4_include/ HEADERS := \ $(shell find . -type f -name '*.h') \