You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
840 B
35 lines
840 B
.PHONY: server server-log server-run client client-log client-run |
|
|
|
server: |
|
@-cd server ; \ |
|
platformio run --environment server --target compiledb ; \ |
|
platformio run --environment server ; \ |
|
cd .. |
|
|
|
server-log: |
|
@-cd server ; \ |
|
platformio device monitor --environment server ; \ |
|
cd .. |
|
|
|
server-run: server |
|
@-cd server ; \ |
|
platformio run --environment server --target upload ; \ |
|
platformio device monitor --environment server ; \ |
|
cd .. |
|
|
|
client: |
|
@-cd client ; \ |
|
platformio run --environment client --target compiledb ; \ |
|
platformio run --environment client ; |
|
cd .. |
|
|
|
client-log: |
|
@-cd client ; \ |
|
platformio device monitor --environment client |
|
cd .. |
|
|
|
client-run: client |
|
@-cd client ; \ |
|
platformio run --environment client --target upload ; \ |
|
platformio device monitor --environment client |
|
cd ..
|
|
|