diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -95,8 +95,8 @@ build/native/unity-test-runner/test_runner: $(TEST_OBJ) $(REAL_ELF): $(REAL_OBJ) $(AVR_CC) $(AVR_LDFLAGS) -o $@ $^ -size: - [ -f "$(REAL_ELF)" ] && $(AVR_SIZE) -C --mcu="$(MCU)" "$(REAL_ELF)" +size: $(REAL_ELF) + $(AVR_SIZE) -C --mcu="$(MCU)" "$(REAL_ELF)" # ELF for simulator/emu. Note that whever I/O is required, the *_sim.{o,c} # versions of each component will provide a mocked interface. This allows for |