1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
|
TEST = thread-test semaphore-test mutex-test all: $(TEST:=.elf) %.elf: %.o $(BOARD_OBJS) $(LIBS) $(CC) $(CFLAGS) $^ -o $@ -T$(LDSCRIPT) -g -Wl,-Map=$*.map $(OBJCOPY) -O ihex $*.elf $*.hex $(OBJCOPY) -O binary $*.elf $*.bin $(OBJDUMP) -St $*.elf >$*.lst $(SIZE) $*.elf clean: rm -f *.o rm -f *.elf rm -f *.hex rm -f *.bin rm -f *.map rm -f *.lst ' title='sw/stm32 Git repository'/>
![]() |
index : sw/stm32 | |
Cryptech HSM on STM-32 ARM processor | git repositories |
aboutsummaryrefslogtreecommitdiff |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
|