mirror of
https://github.com/DragonOS-Community/DragonOS.git
synced 2025-06-10 16:26:48 +00:00
10 lines
227 B
Makefile
10 lines
227 B
Makefile
|
|
user_apps_sub_dirs=shell about
|
|
|
|
all:
|
|
@list='$(user_apps_sub_dirs)'; for subdir in $$list; do \
|
|
echo "make all in $$subdir";\
|
|
cd $$subdir;\
|
|
$(MAKE) all CFLAGS="$(CFLAGS) -I $(shell pwd)";\
|
|
cd ..;\
|
|
done
|