2019-12-10 13:21:49 +01:00
|
|
|
RELEASE_DIR = release
|
|
|
|
|
|
|
|
BUILDROOT=buildroot
|
|
|
|
BUILDROOT_EXTERNAL=buildroot-external
|
|
|
|
DEFCONFIG_DIR = $(BUILDROOT_EXTERNAL)/configs
|
|
|
|
|
|
|
|
TARGETS := $(notdir $(patsubst %_defconfig,%,$(wildcard $(DEFCONFIG_DIR)/*_defconfig)))
|
|
|
|
TARGETS_CONFIG := $(notdir $(patsubst %_defconfig,%-config,$(wildcard $(DEFCONFIG_DIR)/*_defconfig)))
|
|
|
|
|
|
|
|
.NOTPARALLEL: $(TARGETS) $(TARGETS_CONFIG) all
|
|
|
|
|
|
|
|
.PHONY: $(TARGETS) $(TARGETS_CONFIG) all clean help
|
|
|
|
|
|
|
|
all: $(TARGETS)
|
|
|
|
|
|
|
|
$(RELEASE_DIR):
|
|
|
|
mkdir -p $(RELEASE_DIR)
|
|
|
|
|
|
|
|
$(TARGETS_CONFIG): %-config:
|
|
|
|
@echo "config $*"
|
|
|
|
$(MAKE) -C $(BUILDROOT) BR2_EXTERNAL=../$(BUILDROOT_EXTERNAL) "$*_defconfig"
|
|
|
|
|
|
|
|
$(TARGETS): %: $(RELEASE_DIR) %-config
|
|
|
|
@echo "build $@"
|
2019-12-10 13:45:54 +01:00
|
|
|
$(MAKE) -C $(BUILDROOT) BR2_EXTERNAL=../$(BUILDROOT_EXTERNAL) 2>&1 | tee logs/buildroot_$@_output.txt
|
2020-10-06 21:23:38 +02:00
|
|
|
cp -f $(BUILDROOT)/output/images/sdcard.img $(RELEASE_DIR)/OpenVoiceOS_$@.img
|
2021-01-30 09:18:23 +01:00
|
|
|
rm $(RELEASE_DIR)/OpenVoiceOS_$@.img.xz
|
|
|
|
xz -3 -T0 $(RELEASE_DIR)/OpenVoiceOS_$@.img
|
2019-12-10 13:21:49 +01:00
|
|
|
|
|
|
|
# Do not clean when building for one target
|
|
|
|
ifneq ($(words $(filter $(TARGETS),$(MAKECMDGOALS))), 1)
|
|
|
|
@echo "clean $@"
|
|
|
|
$(MAKE) -C $(BUILDROOT) BR2_EXTERNAL=../$(BUILDROOT_EXTERNAL) clean
|
|
|
|
endif
|
|
|
|
@echo "finished $@"
|
|
|
|
|
|
|
|
clean:
|
|
|
|
$(MAKE) -C $(BUILDROOT) BR2_EXTERNAL=../$(BUILDROOT_EXTERNAL) clean
|
|
|
|
|
2020-04-22 14:45:32 +02:00
|
|
|
menuconfig:
|
|
|
|
$(MAKE) -C $(BUILDROOT) BR2_EXTERNAL=../$(BUILDROOT_EXTERNAL) menuconfig
|
|
|
|
|
|
|
|
savedefconfig:
|
|
|
|
$(MAKE) -C $(BUILDROOT) BR2_EXTERNAL=../$(BUILDROOT_EXTERNAL) savedefconfig
|
|
|
|
|
2019-12-10 13:21:49 +01:00
|
|
|
help:
|
|
|
|
@echo "Supported targets: $(TARGETS)"
|
|
|
|
@echo "Run 'make <target>' to build a target image."
|
|
|
|
@echo "Run 'make all' to build all target images."
|
|
|
|
@echo "Run 'make clean' to clean the build output."
|
2020-10-06 21:23:38 +02:00
|
|
|
@echo "Run 'make <target>-config' to configure OpenVoiceOS for a target."
|
2020-04-22 14:45:32 +02:00
|
|
|
@echo "Run 'make menuconfig' to update current config utilising a menu based program."
|
|
|
|
@echo "Run 'make savedefconfig' to save current config back to config directory."
|