]> the.earth.li Git - esp8266-clock.git/blobdiff - Makefile
Use system esptool to build ROM bin file
[esp8266-clock.git] / Makefile
index 511cfd5b680d92ca23b3aaaec948d0519993dba5..347b9046bff4c7b34bf7987736eed01192ed235a 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -15,12 +15,12 @@ LDFLAGS = -nostdlib -Wl,--no-check-sections -Wl,--gc-sections -Wl,-static \
          -L$(SDKDIR)/xtensa-lx106-elf/lib
 
 APP = clock
-OBJS = user_main.o max7219.o spi.o clock.o
+OBJS = user_main.o clock.o max7219.o ota.o spi.o
 
 all: rom0.bin rom1.bin
 
 %.bin: %.elf
-       PATH=$$PATH:$(SDKDIR)/bin esptool.py elf2image $^ --version 2 -o $@
+       esptool elf2image $^ --version 2 -o $@
 
 %.elf: $(APP)_app.a
        $(LD) -T$(basename $@).ld $(LDFLAGS) -Wl,--start-group $(LIBS) $^ -Wl,--end-group -lgcc -o $@