-
Notifications
You must be signed in to change notification settings - Fork 458
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Makefiles to build firmwares and buildtools
- Loading branch information
1 parent
3f42904
commit d50a0c2
Showing
7 changed files
with
76 additions
and
0 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,11 @@ | ||
all: buildtools firmwares | ||
|
||
firmwares: buildtools FORCE | ||
@printf "\033[0;31m EXTRACTING FLASHPATCHES AND UCODE\033[0m\n" | ||
$(Q)make -C $@ | ||
|
||
buildtools: FORCE | ||
@printf "\033[0;31m BUILDING BUILDTOOLS\033[0m\n" | ||
$(Q)make -C $@ | ||
|
||
FORCE: |
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,12 @@ | ||
all: flash_patch_extractor ucode_extractor | ||
|
||
flash_patch_extractor: FORCE | ||
@printf "\033[0;31m BUILDING\033[0m %s\n" $@ | ||
$(Q)make -C $@ | ||
|
||
ucode_extractor: FORCE | ||
@printf "\033[0;31m BUILDING\033[0m %s\n" $@ | ||
$(Q)make -C $@ | ||
|
||
FORCE: | ||
|
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,9 @@ | ||
SUBDIRS = $(dir $(wildcard */Makefile)) | ||
|
||
all: $(SUBDIRS) | ||
|
||
$(SUBDIRS): FORCE | ||
@printf "\033[0;31m EXECUTING MAKE FOR CHIP VERSION\033[0m %s\n" $@ | ||
$(Q)make -C $@ | ||
|
||
FORCE: |
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,11 @@ | ||
SUBDIRS = $(dir $(wildcard */definitions.mk)) | ||
|
||
all: $(SUBDIRS) | ||
|
||
$(SUBDIRS): FORCE | ||
ifndef (,$(wildcard $(addprefix $@, Makefile))) | ||
@printf "\033[0;31m EXECUTING MAKE FOR FIRMWARE VERSION\033[0m %s\n" $@ | ||
$(Q)make -C $@ | ||
endif | ||
|
||
FORCE: |
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,11 @@ | ||
SUBDIRS = $(dir $(wildcard */definitions.mk)) | ||
|
||
all: $(SUBDIRS) | ||
|
||
$(SUBDIRS): FORCE | ||
ifndef (,$(wildcard $(addprefix $@, Makefile))) | ||
@printf "\033[0;31m EXECUTING MAKE FOR FIRMWARE VERSION\033[0m %s\n" $@ | ||
$(Q)make -C $@ | ||
endif | ||
|
||
FORCE: |
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,11 @@ | ||
SUBDIRS = $(dir $(wildcard */definitions.mk)) | ||
|
||
all: $(SUBDIRS) | ||
|
||
$(SUBDIRS): FORCE | ||
ifndef (,$(wildcard $(addprefix $@, Makefile))) | ||
@printf "\033[0;31m EXECUTING MAKE FOR FIRMWARE VERSION\033[0m %s\n" $@ | ||
$(Q)make -C $@ | ||
endif | ||
|
||
FORCE: |
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,11 @@ | ||
SUBDIRS = $(dir $(wildcard */definitions.mk)) | ||
|
||
all: $(SUBDIRS) | ||
|
||
$(SUBDIRS): FORCE | ||
ifndef (,$(wildcard $(addprefix $@, Makefile))) | ||
@printf "\033[0;31m EXECUTING MAKE FOR FIRMWARE VERSION\033[0m %s\n" $@ | ||
$(Q)make -C $@ | ||
endif | ||
|
||
FORCE: |