makefile错误***缺少分隔符。停止

问题描述 投票:1回答:1

有人会指出make文件问题的根本原因和修复方法吗?在Suse 12 SP2 x64上构建我遇到此错误:

tony@linux-31cz:~/sandbox> gmake -f gnumake.sys
gnumake.sys:18: *** missing separator.  Stop.
tony@linux-31cz:~/sandbox> 

我有这个版本:

tony@linux-31cz:~/sandbox> make --version
GNU Make 4.0
Built for x86_64-unknown-linux-gnu
Copyright (C) 1988-2013 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

下面是gnumake.sys,其中[TAB]是一个tab char。

#-----------------------------------------------------------------------#
#     Common definitions, can be overridden in Platform specific part
#-----------------------------------------------------------------------#
CC                = cc
CCPP              = CC
LIB               = ar rv
CP                = cp
RM                = rm -f
MV                = mv -f
TOUCH             = touch
NEEDMOVE          =
CPP_NEED_C_SUFFIX =
GREP_SEARCH       = "^\# .* .*\.[ch]"
AWK_COLUMN        = $$3
AWK_COLUMN_CPP    = $$3
WD               := $(shell pwd)

%if %env (BUILD_PRODUCT_VERSION, 712) 
[TAB]export BUILDFLAGVER = -DBUILD_PRODUCT_V712
[TAB]export TSMVERSIONTXT =7.1.2.0
[TAB]%if %env (VERSION_BASED_OUTPUT,1)
[TABTAB]export TSMVERSION=$(BUILD_PRODUCT_VERSION)
[TAB]%endif
%elseif %env (BUILD_PRODUCT_VERSION, 812)
[TAB]export BUILDFLAGVER = -DBUILD_PRODUCT_V713
[TAB]export TSMVERSIONTXT =7.1.3.0
[TAB]%if %env (VERSION_BASED_OUTPUT,1)
[TABTAB]export TSMVERSION=$(BUILD_PRODUCT_VERSION)
[TAB]%endif
%endif
linux makefile
1个回答
2
投票

在给定的示例中,使用了错误的语法。正确的语法是这样的:

#-----------------------------------------------------------------------#
#     Common definitions, can be overridden in Platform specific part
#-----------------------------------------------------------------------#
CC                = cc
CCPP              = CC
LIB               = ar rv
CP                = cp
RM                = rm -f
MV                = mv -f
TOUCH             = touch
NEEDMOVE          =
CPP_NEED_C_SUFFIX =
GREP_SEARCH       = "^\# .* .*\.[ch]"
AWK_COLUMN        = $$3
AWK_COLUMN_CPP    = $$3
WD               := $(shell pwd)

ifeq ($(BUILD_PRODUCT_VERSION), 712)
        export BUILDFLAGVER = -DBUILD_PRODUCT_V712
        export TSMVERSIONTXT = 7.1.2.0
        ifeq ($(VERSION_BASED_OUTPUT), 1)
                export TSMVERSION=$(BUILD_PRODUCT_VERSION)
        endif
else ifeq ($(BUILD_PRODUCT_VERSION), 812)
        export BUILDFLAGVER = -DBUILD_PRODUCT_V713
        export TSMVERSIONTXT = 7.1.3.0
        ifeq ($(VERSION_BASED_OUTPUT), 1)
                export TSMVERSION=$(BUILD_PRODUCT_VERSION)
        endif
endif

您可以在这里找到详细说明:http://www.gnu.org/software/make/manual/make.html

© www.soinside.com 2019 - 2024. All rights reserved.