mongoose/examples/esp8266/Makefile

14 lines
277 B
Makefile
Raw Normal View History

2020-12-27 09:29:42 +08:00
THISDIR = $(realpath $(CURDIR))
ROOTDIR = $(realpath $(CURDIR)/../..)
all: example
2021-07-29 21:21:20 +08:00
example:
true
build: src/main/main.c src/main/wifi.c Makefile
2020-12-27 09:29:42 +08:00
docker run --rm -v $(ROOTDIR):$(ROOTDIR) -w $(THISDIR) docker.io/mdashnet/8266 make -C src defconfig app
clean:
2021-07-29 21:21:20 +08:00
rm -rf build