mirror of
https://github.com/LuckfoxTECH/luckfox-pico.git
synced 2026-01-18 03:28:19 +01:00
update:add luckfox-pico Ultra support
This commit is contained in:
committed by
luckfox-eng33
parent
1e160dee55
commit
d3153ac97e
@@ -15,9 +15,16 @@ include $(MAKEFILE_DIR)/Makefile.param
|
||||
################################################################################
|
||||
|
||||
app_src := $(wildcard ./*/Makefile)
|
||||
app_src += $(component_src)
|
||||
app_src := $(dir $(app_src))
|
||||
app_src := $(filter-out ./component/,$(app_src))
|
||||
|
||||
component_src := $(wildcard ./component/*/Makefile)
|
||||
all_src += $(component_src)
|
||||
all_src += $(app_src)
|
||||
all_src := $(dir $(all_src))
|
||||
|
||||
|
||||
ifeq ($(RK_ENABLE_FASTBOOT),y)
|
||||
pkg-build := fastboot-build
|
||||
endif
|
||||
@@ -32,7 +39,8 @@ fastboot-build:
|
||||
distclean: clean
|
||||
|
||||
clean:
|
||||
$(foreach target,$(app_src),make clean -C $(target)||exit -1;)
|
||||
$(foreach target,$(all_src),make clean -C $(target)||exit -1;)
|
||||
@rm -rf ./wifi_app/wpa_supplicant.conf
|
||||
@rm -rf $(RK_APP_OUTPUT)
|
||||
|
||||
info:
|
||||
|
||||
Reference in New Issue
Block a user