From d9113303d8e1d449a122f7a5f66453fbe7c26a46 Mon Sep 17 00:00:00 2001 From: LoGin Date: Sun, 3 Sep 2023 13:33:27 +0800 Subject: [PATCH] =?UTF-8?q?relibc=E4=B8=8E=E6=97=A7=E7=9A=84C=E5=BA=93?= =?UTF-8?q?=E5=90=8C=E6=97=B6=E5=BC=80=E5=A7=8B=E7=BC=96=E8=AF=91=20(#369)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- user/Makefile | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/user/Makefile b/user/Makefile index 1430927b..4c53c5ce 100644 --- a/user/Makefile +++ b/user/Makefile @@ -64,13 +64,12 @@ $(user_sub_dirs): ECHO sys_api_lib $(MAKE) -C $@ all CFLAGS="$(CFLAGS)" tmp_output_dir="$(tmp_output_dir)" output_dir="$(output_dir)" sys_libs_dir="$(shell pwd)/libs" -app: $(user_sub_dirs) - $(MAKE) dadk_run +app: $(user_sub_dirs) dadk_run -all: install_dadk app - $(shell if [ ! -e $(tmp_output_dir) ];then mkdir -p $(tmp_output_dir); fi) - $(shell if [ ! -e $(output_dir) ];then mkdir -p $(output_dir); fi) +all: make_output_dir + + $(MAKE) app @echo 用户态程序编译完成