Makefile 语法分析 第一部分 VERSION = 2 # 给变量VERSION 赋值 PATCHLEVEL = 6 # 给变量PATCHLEVEL 赋值 SUBLEVEL = 22 # 给变量SUBLEVEL 赋值 EXTRAVERSION =
6 # 给变量EXTRAVERSION 赋值 NAME = Holy Dancing Manatees, Batman
# 给变量NAME 赋值 # *DOCUMENTATION* # To see a list of typical targets execute "make help" # More info can be located in
/README # Comments in this file are targeted only to the developer, do not # expect to learn how to build the kernel reading this file
# Do not: # o use make's built-in rules and variables # (this increases performance and avoid hard-to-debug behavour); # o print "Entering directory
"; MAKEFLAGS += -rR --no-print-directory # 操作符“+=”的作用是给变量(“+=”前面的MAKEFLAGS)追加值
# 如果变量(“+=”前面的MAKEFLAGS)之前没有定义过,那么,“+=”会自动变成“=”; # 如果前面有变量(“+=”前面的MAKEFLAGS)定义,那么“+=”会继承于前次操作的赋值符; # 如果前一次的是“:=”,那么“+=”会以