From 40bc6428d13740fcd263f5299a356a746328b87d Mon Sep 17 00:00:00 2001 From: Jeremy Kerr Date: Mon, 14 May 2012 15:57:10 +0800 Subject: [PATCH] Makefile: Comment components Signed-off-by: Jeremy Kerr --- Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 807c9fb..fa2e62e 100644 --- a/Makefile +++ b/Makefile @@ -1,15 +1,16 @@ +# compile options CC = gcc CPPFLAGS = -I. $(ccan_includes) CFLAGS = -Wall -Werror -Wextra -ggdb --std=c99 LDFLAGS = -fwhole-program +# build configuration sbsign_objs = sbsign.o idc.o image.o sbverify_objs = sbverify.o idc.o image.o -libs = -lbfd -lcrypto - ccan_objs = lib/ccan/libccan.a ccan_includes = -I./lib/ccan +libs = -lbfd -lcrypto tools = sbsign sbverify