| @@ -138,16 +138,16 @@ depend: $(DEPENDS) | |||||
| .endfor | .endfor | ||||
| .arm_deps: $(SRCS) | .arm_deps: $(SRCS) | ||||
| $(ARMCC) $(ARMTARGET) $(CFLAGS) $(.ALLSRC) -MM > $@ || rm -f $@ | |||||
| $(ARMCC) $(ARMTARGET) $(CFLAGS) $(.ALLSRC) -MM > $@ || (rm -f $@ && false) | |||||
| .test_deps: $(LIBLORA_TEST_SRCS) | .test_deps: $(LIBLORA_TEST_SRCS) | ||||
| $(CC) $(CFLAGS) $(.ALLSRC) -MM | sed -e 's/\.o:/\.no:/' > $@ || rm -f $@ | |||||
| $(CC) $(CFLAGS) $(.ALLSRC) -MM | sed -e 's/\.o:/\.no:/' > $@ || (rm -f $@ && false) | |||||
| $(PROG)$(PROGEXT): $(OBJS) | $(PROG)$(PROGEXT): $(OBJS) | ||||
| $(ARMCC) $(ARMTARGET) -o $@ $(.ALLSRC) -T$(LINKER_SCRIPT) --specs=nosys.specs -Wl,--gc-sections -static --specs=nano.specs -Wl,--start-group -lc -lm -Wl,--end-group | $(ARMCC) $(ARMTARGET) -o $@ $(.ALLSRC) -T$(LINKER_SCRIPT) --specs=nosys.specs -Wl,--gc-sections -static --specs=nano.specs -Wl,--start-group -lc -lm -Wl,--end-group | ||||
| $(PROG).list: $(PROG)$(PROGEXT) | $(PROG).list: $(PROG)$(PROGEXT) | ||||
| $(ARMOBJDUMP) -h -S $(.ALLSRC) > $@ || rm -f $@ | |||||
| $(ARMOBJDUMP) -h -S $(.ALLSRC) > $@ || (rm -f $@ && false) | |||||
| .PHONY: runbuild | .PHONY: runbuild | ||||
| runbuild: $(SRCS) | runbuild: $(SRCS) | ||||