9os

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit 490f2550f1c84d6c2126b13ecb03f6ec9abc0cd6
parent 293e94cee3b5a915ebb1a4cef0c93210d4a8e075
Author: Roberto Vargas <roberto.vargas@arm.com>
Date:   Thu,  4 Apr 2019 11:12:16 +0100

[drivers] Don't duplicate files in example.a

Using -q append the files without checking if they exist
so every make was increasing the size of the lib file.

Change-Id: I8484bc732081b8090123f0e79c98771bebd5e894

Diffstat:
Mdrivers/Makefile | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/Makefile b/drivers/Makefile @@ -6,7 +6,7 @@ all clean: devs.mk blobs.mk example.a $(MAKE) -f Makefile.drv $@ example.a: dev.c blobs.h devar.c pl011.c - $(AR) -qv $@ dev.c blobs.h devar.c pl011.c + $(AR) -rv $@ dev.c blobs.h devar.c pl011.c devs.mk: $(TARGETDIR)/rcode mkdev $(TARGETDIR)/rcode