mirror of
https://github.com/DragonOS-Community/DragonOS.git
synced 2025-06-18 08:06:32 +00:00
🆕 运行文件系统中的二进制程序
This commit is contained in:
11
user/libs/Makefile
Normal file
11
user/libs/Makefile
Normal file
@ -0,0 +1,11 @@
|
||||
|
||||
user_libs_sub_dirs=libc libsystem
|
||||
|
||||
|
||||
all:
|
||||
@list='$(user_libs_sub_dirs)'; for subdir in $$list; do \
|
||||
echo "make all in $$subdir";\
|
||||
cd $$subdir;\
|
||||
$(MAKE) all CFLAGS="$(CFLAGS) -I $(shell pwd)";\
|
||||
cd ..;\
|
||||
done
|
Reference in New Issue
Block a user