14 lines
277 B
Makefile
Raw Normal View History

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