Fix makefile
This commit is contained in:
parent
8dc98edcec
commit
147c963d59
7
Makefile
7
Makefile
|
@ -8,10 +8,13 @@ install: build/uilleann.ino.uf2
|
||||||
./install.sh $< $(UF2_MOUNT)
|
./install.sh $< $(UF2_MOUNT)
|
||||||
|
|
||||||
# uf2conv.py is covered by an MIT license.
|
# uf2conv.py is covered by an MIT license.
|
||||||
build/uf2conv.py:
|
build/uf2conv.py: build/uf2families.json
|
||||||
mkdir -p build
|
mkdir -p build
|
||||||
curl -L https://raw.githubusercontent.com/microsoft/uf2/master/utils/uf2conv.py > $@
|
curl -L https://raw.githubusercontent.com/microsoft/uf2/master/utils/$(@F) > $@
|
||||||
chmod +x $@
|
chmod +x $@
|
||||||
|
build/uf2families.json:
|
||||||
|
mkdir -p build
|
||||||
|
curl -L https://raw.githubusercontent.com/microsoft/uf2/master/utils/$(@F) > $@
|
||||||
|
|
||||||
%.uf2: %.bin build/uf2conv.py
|
%.uf2: %.bin build/uf2conv.py
|
||||||
build/uf2conv.py -b 0x4000 -c -o $@ $<
|
build/uf2conv.py -b 0x4000 -c -o $@ $<
|
||||||
|
|
Loading…
Reference in New Issue