aboutsummaryrefslogtreecommitdiff
path: root/projects/cli-test/mgmt-keystore.c
diff options
context:
space:
mode:
Diffstat (limited to 'projects/cli-test/mgmt-keystore.c')
0 files changed, 0 insertions, 0 deletions
-12 10:15:38 +0200 committer Fredrik Thulin <fredrik@thulin.net> 2016-07-12 10:15:38 +0200 re-enable masterkey' href='/sw/stm32/commit/projects/cli-test/Makefile?h=python3&id=87dcf973d96463f54fa71d072e02b29a4c8ef1d4'>87dcf97
16c9fbd9b
9b73356
e3db117
16c9fbd9b







a5850b4
14282a9
c670d7b
16c9fbd9b
c670d7b
9b73356
c670d7b
c670d7b
c670d7b




c670d7b

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
               
 
                               
        



                         
                        

                          
                   
 
                                         







                                           
 
                                                                            
 
                  
 
                                        
                                                                 
                                          




                      

                   
PROJ = cli-test

# objs in addition to $(PROJ).o
OBJS = \
	mgmt-cli.o \
	mgmt-dfu.o \
	mgmt-fpga.o \
	mgmt-keystore.o \
	mgmt-keywrap.o \
	mgmt-masterkey.o \
	mgmt-misc.o \
	mgmt-show.o

CFLAGS += -I$(LIBCLI_SRC) -I$(LIBHAL_SRC)
CFLAGS += -I$(LIBTFM_BLD)
CFLAGS += -Wno-missing-field-initializers

ifdef DO_TIMING
CFLAGS += -DDO_TIMING
OBJS += mgmt-timing.o $(TOPLEVEL)/stm-dwt.o
LDFLAGS += -lm
endif

LIBS += $(LIBCLI_BLD)/libcli.a $(LIBHAL_BLD)/libhal.a $(LIBTFM_BLD)/libtfm.a

all: $(PROJ:=.elf)

%.elf: %.o $(BOARD_OBJS) $(OBJS) $(LIBS)
	$(CC) $(CFLAGS) $^ -o $@ -T$(LDSCRIPT) -g -Wl,-Map=$*.map
	$(OBJCOPY) -O binary $*.elf $*.bin
	$(SIZE) $*.elf

clean:
	rm -f *.o
	rm -f *.elf
	rm -f *.bin
	rm -f *.map