This commit is contained in:
j3d1 2023-02-12 07:40:58 +01:00
parent 94bdb71820
commit c4c414ebd3
57 changed files with 49795 additions and 3 deletions

View file

@ -0,0 +1,17 @@
.PHONY: firmware bootloader flash
all: firmware bootloader
firmware:
+@make -C firmware all
bootloader:
+@make -C bootloader all
flash: firmware bootloader
@make -C bootloader flash
@make -C firmware flash
clean:
+@make -C firmware clean
+@make -C bootloader clean