Makefile: Comment components
Signed-off-by: Jeremy Kerr <jeremy.kerr@canonical.com>
This commit is contained in:
parent
17f77a9aab
commit
40bc6428d1
1 changed files with 3 additions and 2 deletions
5
Makefile
5
Makefile
|
@ -1,15 +1,16 @@
|
||||||
|
|
||||||
|
# compile options
|
||||||
CC = gcc
|
CC = gcc
|
||||||
CPPFLAGS = -I. $(ccan_includes)
|
CPPFLAGS = -I. $(ccan_includes)
|
||||||
CFLAGS = -Wall -Werror -Wextra -ggdb --std=c99
|
CFLAGS = -Wall -Werror -Wextra -ggdb --std=c99
|
||||||
LDFLAGS = -fwhole-program
|
LDFLAGS = -fwhole-program
|
||||||
|
|
||||||
|
# build configuration
|
||||||
sbsign_objs = sbsign.o idc.o image.o
|
sbsign_objs = sbsign.o idc.o image.o
|
||||||
sbverify_objs = sbverify.o idc.o image.o
|
sbverify_objs = sbverify.o idc.o image.o
|
||||||
libs = -lbfd -lcrypto
|
|
||||||
|
|
||||||
ccan_objs = lib/ccan/libccan.a
|
ccan_objs = lib/ccan/libccan.a
|
||||||
ccan_includes = -I./lib/ccan
|
ccan_includes = -I./lib/ccan
|
||||||
|
libs = -lbfd -lcrypto
|
||||||
|
|
||||||
tools = sbsign sbverify
|
tools = sbsign sbverify
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue