diff options
author | Johannes Stoelp <johannes.stoelp@gmail.com> | 2022-01-14 23:51:05 +0100 |
---|---|---|
committer | Johannes Stoelp <johannes.stoelp@gmail.com> | 2022-01-14 23:51:05 +0100 |
commit | f9928a1a08c57fe853888119a996c3acc98ee09d (patch) | |
tree | c9770b76ffcc281da141f3aa2c595600372c0fca /Makefile | |
download | pio-nodemcuv2-dhcp-server-f9928a1a08c57fe853888119a996c3acc98ee09d.tar.gz pio-nodemcuv2-dhcp-server-f9928a1a08c57fe853888119a996c3acc98ee09d.zip |
Able to offer IP address + DNS/Gateway ...
Worked with devices at my hand.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..203276a --- /dev/null +++ b/Makefile @@ -0,0 +1,20 @@ +# Copyright (c) 2022 Johannes Stoelp + +build: + pio run + +run: + pio run -e nodemcuv2 -t upload && pio device monitor -b 115200 + +check: + pio test + +clean: + pio run -t clean + +help: + @echo "Targets:" + @echo " build - Build project." + @echo " run - Build & flash project and attach serial monitor." + @echo " check - Run tests." + @echo " clean - Clean project." |