diff --git a/Makefile b/Makefile new file mode 100644 index 000000000..b2fdbd298 --- /dev/null +++ b/Makefile @@ -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: diff --git a/buildtools/Makefile b/buildtools/Makefile new file mode 100644 index 000000000..9807f2317 --- /dev/null +++ b/buildtools/Makefile @@ -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: + \ No newline at end of file diff --git a/firmwares/Makefile b/firmwares/Makefile new file mode 100644 index 000000000..894237fe2 --- /dev/null +++ b/firmwares/Makefile @@ -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: diff --git a/firmwares/bcm4330/Makefile b/firmwares/bcm4330/Makefile new file mode 100644 index 000000000..a8b2e248c --- /dev/null +++ b/firmwares/bcm4330/Makefile @@ -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: diff --git a/firmwares/bcm4339/Makefile b/firmwares/bcm4339/Makefile new file mode 100644 index 000000000..a8b2e248c --- /dev/null +++ b/firmwares/bcm4339/Makefile @@ -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: diff --git a/firmwares/bcm43438/Makefile b/firmwares/bcm43438/Makefile new file mode 100644 index 000000000..a8b2e248c --- /dev/null +++ b/firmwares/bcm43438/Makefile @@ -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: diff --git a/firmwares/bcm4358/Makefile b/firmwares/bcm4358/Makefile new file mode 100644 index 000000000..a8b2e248c --- /dev/null +++ b/firmwares/bcm4358/Makefile @@ -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: