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.
33 lines
564 B
33 lines
564 B
.PHONY: server server-log server-run client client-log client-run |
|
|
|
server: |
|
@-cd server ; \ |
|
platformio run --target upload ; \ |
|
cd .. |
|
|
|
server-log: |
|
@-cd server ; \ |
|
platformio device monitor ; \ |
|
cd .. |
|
|
|
server-run: |
|
@-cd server ; \ |
|
platformio run --target upload && \ |
|
platformio device monitor ; \ |
|
cd .. |
|
|
|
client: |
|
@-cd client ; \ |
|
platformio run --target upload ; \ |
|
cd .. |
|
|
|
client-log: |
|
@-cd client ; \ |
|
platformio device monitor ; \ |
|
cd .. |
|
|
|
client-run: |
|
@-cd client ; \ |
|
platformio run --target upload && \ |
|
platformio device monitor ; \ |
|
cd ..
|
|
|