安装HEVC

时间:2016-02-24 15:12:10

标签: makefile

我有一个问题,

在我的脚本中,有一个makefile:

### enforce 32-bit build : 1=yes, 0=no
M32?= 0

export M32
all:
    $(MAKE) -C lib/TLibVideoIO  MM32=$(M32)
    $(MAKE) -C lib/TLibCommon   MM32=$(M32)
    $(MAKE) -C lib/TLibDecoder  MM32=$(M32)
    $(MAKE) -C lib/TLibEncoder  MM32=$(M32)
    $(MAKE) -C lib/TAppCommon       MM32=$(M32)
    $(MAKE) -C app/TAppDecoder      MM32=$(M32)
    $(MAKE) -C app/TAppEncoder      MM32=$(M32)
    $(MAKE) -C utils/annexBbytecount       MM32=$(M32)
    $(MAKE) -C utils/convert_NtoMbit_YCbCr MM32=$(M32)
    $(MAKE) -C lib/TLibDecoderAnalyser  MM32=$(M32)
    $(MAKE) -C app/TAppDecoderAnalyser      MM32=$(M32)
debug:
    $(MAKE) -C lib/TLibVideoIO  debug MM32=$(M32)
    $(MAKE) -C lib/TLibCommon   debug MM32=$(M32)
    $(MAKE) -C lib/TLibDecoder  debug MM32=$(M32)
    $(MAKE) -C lib/TLibEncoder  debug MM32=$(M32)
    $(MAKE) -C lib/TAppCommon       debug MM32=$(M32)
    $(MAKE) -C app/TAppDecoder      debug MM32=$(M32)
    $(MAKE) -C app/TAppEncoder      debug MM32=$(M32)
    $(MAKE) -C utils/annexBbytecount       debug MM32=$(M32)
    $(MAKE) -C utils/convert_NtoMbit_YCbCr debug MM32=$(M32)
    $(MAKE) -C lib/TLibDecoderAnalyser  debug MM32=$(M32)
    $(MAKE) -C app/TAppDecoderAnalyser      debug MM32=$(M32)

everything: all all_highbitdepth

我运行makefile,我有一个错误。错误是:

  

build / linux / makefile:第2行:M32?=:命令未找到

     

build / linux / makefile:第6行:找不到所有::命令

     

MAKE:***未指定目标且未找到makefile。停止。

你能找到我的错误吗?

感谢您的帮助

0 个答案:

没有答案