mirror of
https://github.com/cesanta/mongoose.git
synced 2024-12-03 09:23:23 +08:00
11 lines
376 B
Makefile
11 lines
376 B
Makefile
|
THISDIR = $(realpath $(CURDIR))
|
||
|
ROOTDIR = $(realpath $(CURDIR)/../..)
|
||
|
|
||
|
all: example
|
||
|
|
||
|
example: src/main/main.c src/main/wifi.c Makefile
|
||
|
docker run --rm -v $(ROOTDIR):$(ROOTDIR) -w $(THISDIR) docker.io/mdashnet/8266 make -C src defconfig app
|
||
|
|
||
|
clean:
|
||
|
rm -rf $(PROG) *.o *.dSYM *.gcov *.gcno *.gcda *.obj *.exe *.ilk *.pdb mongoose mongoose_* mongoose.* src/build src/sdkconfig
|