0
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

Anybody who knows 'a : b=c=d e=f g=h' <=meaning of this grammar ?? Codes are in the same line, no tap commands are added.

DROP TABLE users
  • 1,955
  • 14
  • 26
GONGDOL
  • 11
  • 1

1 Answers1

1

It's setting the value of $(WINTOOLS) that holds only for those specific targets.

See the documentation about Target-specific variable values.

Oliver Charlesworth
  • 267,707
  • 33
  • 569
  • 680