From ae6ff1a0f4a2960be53cf10c08ea000eeae7e2d4 Mon Sep 17 00:00:00 2001 From: Peter Magnusson Date: Sat, 10 Jan 2015 22:37:12 +0100 Subject: [PATCH] fixes from comments on esptool usage --- Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 448c1f2c..de2b7167 100644 --- a/Makefile +++ b/Makefile @@ -29,6 +29,7 @@ ifeq ($(OS),Windows_NT) CPP = xtensa-lx106-elf-cpp OBJCOPY = xtensa-lx106-elf-objcopy endif + FIRMWAREDIR = ..\\bin\\ ESPPORT = com1 ifeq ($(PROCESSOR_ARCHITECTURE),AMD64) # ->AMD64 @@ -46,6 +47,7 @@ else NM = xtensa-lx106-elf-nm CPP = xtensa-lx106-elf-cpp OBJCOPY = xtensa-lx106-elf-objcopy + FIRMWAREDIR = ../bin/ UNAME_S := $(shell uname -s) ifeq ($(UNAME_S),Linux) # LINUX @@ -65,8 +67,8 @@ else endif endif ############################################################# -ESPTOOL = python ../tools/esptool.py -FIRMWAREDIR = ../bin/ +ESPTOOL = ../tools/esptool.py + CSRCS ?= $(wildcard *.c) ASRCs ?= $(wildcard *.s)