- 论坛徽章:
- 0
|
有关linux内核Makefile的疑问
366 no-dot-config-targets := clean mrproper distclean \
367 cscope TAGS tags help %docs check% \
368 include/linux/version.h headers_% \
369 kernelrelease kernelversion
370
371 config-targets := 0
372 mixed-targets := 0
373 dot-config := 1
374
375 ifneq ($(filter $(no-dot-config-targets), $(MAKECMDGOALS)),)
376 ifeq ($(filter-out $(no-dot-config-targets), $(MAKECMDGOALS)),)
377 dot-config := 0
378 endif
379 endif
380
381 ifeq ($(KBUILD_EXTMOD),)
382 ifneq ($(filter config %config,$(MAKECMDGOALS)),)
383 config-targets := 1
384 ifneq ($(filter-out config %config,$(MAKECMDGOALS)),)
385 mixed-targets := 1
386 endif
387 endif
388 endif
389
390 ifeq ($(mixed-targets),1)
391 # ===========================================================================
392 # We're called with mixed targets (*config and build targets).
393 # Handle them one by one.
394
395 %:: FORCE
396 $(Q)$(MAKE) -C $(srctree) KBUILD_SRC= $@
397
======================================================================
396行如何工作的,那位给解释一二?
这是linux内核2.6.18上的头文件。
[ 本帖最后由 白丁布衣 于 2008-6-11 16:54 编辑 ] |
|