关于Makefile的语法

时间:2012-07-21 02:39:25

标签: macros makefile grammar target prerequisites

WINCONFS = WindowsDebugMinGW WindowsReleaseMinGW

$(WINCONFS) : WINTOOLS=CC=gcc.exe CCC=g++.exe CXX=g++.exe AS=as.exe CND_PLATFORM=Cygwin-Windows

WindowsDebugMinGW : BUILDCONF=WindowsDebugMinGW
WindowsReleaseMinGW : BUILDCONF=WindowsReleaseMinGW

任何知道'a:b = c = d e = f g = h'< =这个语法的含义的人? 代码在同一行,不添加任何tap命令。

1 个答案:

答案 0 :(得分:1)

它设置的$(WINTOOLS)值只适用于那些特定目标。

请参阅有关Target-specific variable values的文档。