Files
sophgo-forum-service 62573a835f middleware: weekly rls 2024.07.20
-e90961, fix aac+vqe "reamain data not process AEC" bug.
-3c08de, split module vpu into vi vo vpss rgn gdc.
-b5d998, (ive): add comment to api.
-166849, mw support arm32.

Change-Id: Ied488d392da9eed2e3a94e1244eeee540c389372
2024-07-25 17:11:08 +08:00

26 lines
870 B
Makefile

ifeq ($(PARAM_FILE), )
PARAM_FILE:=../Makefile.param
include $(PARAM_FILE)
endif
.PHONY: all clean $(MODULES)
MODULES = sys bin vi vo vpss rgn gdc audio mipi_tx venc vdec misc ive isp
all:
@echo "########################################################################################################"
@echo "#"
@echo "# Compiling 'module libs' Configs as below ..."
@echo "# "CROSS_COMPILE=$(CROSS_COMPILE)
@echo "# "KERNEL_DIR=$(KERNEL_DIR)
@echo "#"
@echo "########################################################################################################"
@for x in $(MODULES); \
do cd $$x; if [ $$? ]; then $(MAKE) all || exit 1; cd -; fi; done
clean:
@for x in `find -L ./ -maxdepth 2 -mindepth 2 -name "Makefile" `; \
do cd `dirname $$x`; if [ $$? ]; then $(MAKE) clean; cd -; fi; done
@make -C isp clean
@echo "#"