我在Windows上嘗試設置一個變量時有非常簡單的makefile。但是當我用nmake編譯時,拋出下面的錯誤。如何在Windows makefile中定義一個變量
all:
@echo $(PLATFORM)
BIT = 86
'BIT' is not recognized as an internal or external command,operable program or batch file.
NMAKE : fatal error U1077: 'BIT' : return code '0x1'
Stop.
我基本上想要根據條件將BIT變量設置爲86或64。有人可以幫我嗎?
它前面的空格或製表符會導致make實用程序嘗試將其作爲命令執行。刪除空格。 –
@CareyGregory:非常感謝。你是對的。 – Shashi