make: *** [makefile:2014: .] e
时间: 2023-11-25 07:48:33 浏览: 133
根据提供的引用内容,我们可以得知安装Redis成功后,可以在redis-6.0.9/src目录下查看redis-server、redis-cli、redis-check-rdb、redis-check-aof四个文件。同时,我们还可以通过在安装时指定PREFIX参数来指定安装目录,例如PREFIX=/usr/local/redis。但是,根据提供的信息,我们无法确定问题“make: *** [makefile:2014: .] e”的具体原因。请提供更多的上下文信息或者错误提示,以便我们更好地帮助您解决问题。
相关问题
make: *** No targets specified and no makefile found. Stop.
This error message means that the make command was executed without any targets specified, and there is no makefile present in the current directory.
A makefile is a script that specifies how to build a program or set of programs, and typically includes information about dependencies, compiler options, and other build details.
To resolve this error, you need to either specify a target for the make command (e.g. `make targetname`), or create a makefile in the current directory that defines the build process for your program.
make: *** [makefile:83: CHERY_T1E.elf] Error 1
该错误提示表明在执行make命令时,出现了错误,导致无法生成目标文件。其中,[makefile:83: CHERY_T1E.elf]指明了出错的位置,Error 1则表示出现了一般性的错误。通常情况下,这种错误是由于makefile文件中的某些语法错误或者缺少依赖文件等问题导致的。解决该问题的方法如下:
1.检查makefile文件中的语法错误,确保所有的语法都正确无误。
2.检查makefile文件中是否缺少依赖文件,如果缺少,则需要手动添加依赖文件。
3.检查makefile文件中是否存在歧义,如果存在,则需要手动修改makefile文件。
4.检查系统中是否安装了必要的编译工具,例如gcc、g++等,如果没有安装,则需要先安装这些工具。
以下是一个可能的解决方案:
```shell
make clean
make
```
阅读全文