-1e94c6, remove libcli for isp. -44d44a, add rvv feature,accelerate mlsc, motion, dis, iir and verified. Change-Id: I800c07e762bc9b1e73ed55839eed72a8b1fbcb8f
11 lines
334 B
Makefile
11 lines
334 B
Makefile
.PHONY: clean all
|
|
.SILENT: clean all
|
|
|
|
include isp.mk
|
|
|
|
all:
|
|
cp $(shell echo $(CHIP_ARCH) | tr A-Z a-z)/$(SDK_VER)/lib* $(MW_LIB)
|
|
if [ "$(wildcard $(isp_chip_dir))" != "" ]; then cd $(isp_chip_dir) ; $(MAKE) all || exit 1; fi;
|
|
clean:
|
|
if [ "$(wildcard $(isp_chip_dir))" != "" ]; then cd $(isp_chip_dir) ; $(MAKE) clean || exit 1; fi;
|