-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a quick master makefile to make testing faster
- Loading branch information
1 parent
aa6c34a
commit 7431e0a
Showing
2 changed files
with
38 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# | ||
# A master make file - currently just to help with build-depends and clean | ||
# | ||
|
||
SUBDIRS += debian/ | ||
SUBDIRS += linux/ | ||
|
||
# The boards/* subdirs should probably be controlled from a boards/Makefile | ||
# - maybe later | ||
|
||
SUBDIRS += boards/common-firmware-armbian/ | ||
SUBDIRS += boards/common-firmware-raspbian/ | ||
|
||
QEMUDIRS += boards/qemu_armhf/ | ||
QEMUDIRS += boards/qemu_i386/ | ||
SUBDIRS += $(QEMUDIRS) | ||
|
||
BOARDDIRS += boards/raspberrypi2/ | ||
BOARDDIRS += boards/sun8i-h2-plus-orangepi-zero/ | ||
BOARDDIRS += boards/sun8i-h3-orangepi-lite/ | ||
BOARDDIRS += boards/sun8i-v3s-licheepi-zero/ | ||
SUBDIRS += $(BOARDDIRS) | ||
|
||
all: | ||
$(error This Makefile currently has no default build target) | ||
|
||
build-depends clean reallyclean: | ||
$(foreach dir,$(SUBDIRS),$(MAKE) -C $(dir) $@ &&) true | ||
|
||
image: | ||
$(foreach dir,$(BOARDDIRS),$(MAKE) -C $(dir) $@ &&) true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters