blob: b82d267356b8fe6622f239ee3ae1954326c12ed9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
usb:
make _build E=usb
ps2:
make _build E=ps2
_build:
rm -f .current
platformio run --environment $(E)
echo -n $(E) > .current
install: upload
upload:
platformio run --environment $(shell cat .current) --target upload
update:
platformio platform update
clean-all: clean
clean:
rm -rf .pio .current
help:
@ cat Makefile
|