include ./Make.defines
DIRS=intro ping //瀹氫箟闇€瑕侀€掑綊缂栬瘧鐨勫瓙鏂囦欢澶?
all:
@for dir in $(DIRS) ; do \
if test -d $$dir ; then \
echo "$$dir: $(MAKE) $@" ; \
if (cd $$dir; $(MAKE) $@) ; then \
true; \
else \
exit 1; \
fi; \
fi \
done
.PHONY:clean
clean:
@for dir in $(DIRS) ; do \
if test -d $$dir ; then \
echo "$$dir: $(MAKE) $@" ; \
if (cd $$dir; $(MAKE) $@) ; then \
true; \
else \
exit 1; \
fi; \
fi \
done
distclean:
rm -f $(CLEANFILES) config.cache config.log config.status config.h Make.defines Makefile
递归执行子文件夹makefile模板
最新推荐文章于 2023-08-15 11:42:57 发布