# Makefile to build all programs in all subdirectories## DIRS is a list of all subdirectories containing makefiles# (The library directory is first so that the library gets built first)#DIRS = src# The "namespaces" and "seccomp" directories are deliberately excluded from# the above list because much of the code in those directories requires a# relatively recent kernel and userspace to build. Nevertheless, each of# those directories contains a Makefile.BUILD_DIRS = ${DIRS}# Dummy targets for building and clobbering everything in all subdirectoriesall:@ echo ${BUILD_DIRS}@ for dir in ${BUILD_DIRS}; do (cd $${dir}; ${MAKE}) ; \if test $$? -ne 0; then break; fi; doneallgen:@ for dir in ${BUILD_DIRS}; do (cd $${dir}; ${MAKE} allgen) ; doneclean:@ for dir in ${BUILD_DIRS}; do (cd $${dir}; ${MAKE} clean) ; done
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。