PROJ = hsm # objs in addition to $(PROJ).o OBJS = mgmt-cli.o \ mgmt-firmware.o \ mgmt-bootloader.o \ mgmt-fpga.o \ mgmt-keystore.o \ mgmt-masterkey.o \ mgmt-misc.o \ mgmt-task.o \ log.o BOARD_OBJS += $(TOPLEVEL)/task.o CFLAGS += -DNUM_RPC_TASK=4 CFLAGS += -I$(LIBHAL_SRC) CFLAGS += -I$(LIBCLI_SRC) LIBS += $(LIBHAL_BLD)/libhal.a $(LIBTFM_BLD)/libtfm.a LIBS += $(LIBCLI_BLD)/libcli.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 ='/sw/thirdparty/sqlite3/'>sw/thirdparty/sqlite3
(Old) SQLite3 port once used by Cryptech PKCS #11git repositories
aboutsummaryrefslogtreecommitdiff
path: root/GNUmakefile
blob: cb10c3f48bd33cbb83493cd60a9655586f0c7593 (plain) (blame)
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