CC=arm-none-eabi-gcc AR=arm-none-eabi-ar ########################################### vpath %.c rtx/TARGET_CORTEX_M vpath %.S rtx/TARGET_CORTEX_M/TARGET_RTOS_M4_M7/TOOLCHAIN_GCC SRCS = rtos/rtos_idle.c \ HAL_CM.c \ rt_CMSIS.c \ rt_Event.c \ rt_List.c \ rt_Mailbox.c \ rt_MemBox.c \ rt_Mutex.c \ rt_Robin.c \ rt_Semaphore.c \ rt_System.c \ rt_Task.c \ rt_Time.c \ RTX_Conf_CM.c \ HAL_CM4.S \ SVC_Table.S OBJS = $(patsubst %.S,%.o, $(patsubst %.c,%.o, $(SRCS))) all: librtos.a %.o : %.c $(CC) $(CFLAGS) -c -o $@ $< %.o : %.S $(CC) $(CFLAGS) -c -o $@ $< librtos.a: $(OBJS) $(AR) -r $@ $(OBJS) clean: rm -f $(OBJS) librtos.a 'c160c76325355df9dae6f0ac298692c8fe6fc410'/> Cryptech HSM on STM-32 ARM processorgit repositories
aboutsummaryrefslogtreecommitdiff
path: root/bin/reset
blob: 81908055f95846ed77c15c6245932b9632b01e79 (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