DragonOS/user/apps/Makefile
2022-06-07 23:18:26 +08:00

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