From 20359d70e43d4cb9f92094e97e399ae0e669091a Mon Sep 17 00:00:00 2001 From: Tiezhen WANG Date: Mon, 13 May 2019 16:28:29 -0700 Subject: [PATCH] Fix indentation PiperOrigin-RevId: 248034354 --- .../micro/tools/make/targets/ecm3531_makefile.inc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tensorflow/lite/experimental/micro/tools/make/targets/ecm3531_makefile.inc b/tensorflow/lite/experimental/micro/tools/make/targets/ecm3531_makefile.inc index 897a2b66d21..06f73a8e041 100644 --- a/tensorflow/lite/experimental/micro/tools/make/targets/ecm3531_makefile.inc +++ b/tensorflow/lite/experimental/micro/tools/make/targets/ecm3531_makefile.inc @@ -107,10 +107,10 @@ ifeq ($(TARGET), ecm3531) # These are microcontroller-specific rules for converting the ELF output # of the linker into a binary image that can be loaded directly. -OBJCOPY := $(TARGET_TOOLCHAIN_PREFIX)objcopy + OBJCOPY := $(TARGET_TOOLCHAIN_PREFIX)objcopy -$(BINDIR)/%.bin: $(BINDIR)/% - @mkdir -p $(dir $@) - $(OBJCOPY) $< $@ -O binary + $(BINDIR)/%.bin: $(BINDIR)/% + @mkdir -p $(dir $@) + $(OBJCOPY) $< $@ -O binary endif