Makefile based firmware build works

This commit is contained in:
Attila Body 2019-12-13 09:17:13 +01:00
parent fc93297737
commit 7af47a4b2e
12 changed files with 1014 additions and 12 deletions

13
Makefile Normal file
View file

@ -0,0 +1,13 @@
.PHONY: default firmware tests clean
default: firmware tests
firmware:
$(MAKE) -f firmware.mk
tests:
$(MAKE) -f tests.mk
clean:
$(MAKE) -f firmware.mk clean
$(MAKE) -f tests.mk clean