mirror of
https://github.com/cesanta/mongoose.git
synced 2024-12-12 07:29:04 +08:00
19 lines
576 B
Makefile
19 lines
576 B
Makefile
THISDIR = $(realpath $(CURDIR))
|
|
ROOTDIR = $(realpath $(CURDIR)/../..)
|
|
|
|
all: example
|
|
|
|
example:
|
|
true
|
|
|
|
build: main/main.c Makefile
|
|
docker run --rm -v $(ROOTDIR):$(ROOTDIR) -w $(THISDIR) espressif/idf idf.py build
|
|
|
|
COMPORT ?= /dev/cu.SLAB_USBtoUART
|
|
ESPTOOL ?= esptool.py
|
|
flash:
|
|
cd build && $(ESPTOOL) --chip esp32 -p $(COMPORT) -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 40m --flash_size 2MB 0x8000 partition_table/partition-table.bin 0x1000 bootloader/bootloader.bin 0x100000 mongoose-esp32-example.bin
|
|
|
|
clean:
|
|
rm -rf build
|