diff options
| author | Reiner Herrmann <reiner@reiner-h.de> | 2020-07-15 19:19:08 +0200 |
|---|---|---|
| committer | Reiner Herrmann <reiner@reiner-h.de> | 2020-07-15 19:19:08 +0200 |
| commit | 98e80a7c3bca5291db84501a6ab099205a4653ce (patch) | |
| tree | c844ea4ad293f866307ad93ad10454621873406f /Makefile | |
hello world program with tux display
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..1e76b8c --- /dev/null +++ b/Makefile @@ -0,0 +1,18 @@ + +all: + platformio -f -c vim run + +upload: + platformio -f -c vim run --target upload + +clean: + platformio -f -c vim run --target clean + +program: + platformio -f -c vim run --target program + +uploadfs: + platformio -f -c vim run --target uploadfs + +update: + platformio -f -c vim update |
