make *** Makefile 中没有 make 目标的规则

make *** Makefile 中没有 make 目标的规则

我遇到了 makefile 无法执行包含文件的问题。

我的Makefile是这样的。

SHELL = /bin/csh
CURDIR = $(shell pwd)
....
....
include $(CURDIR)/device.cfg

....

完成。device.cfg 文件也确实存在于其中。

但是当我输入“make”时,出现错误消息:*** 没有规则来制作目标“xxxxx/device.cfg:没有这样的文件或目录”。

我怎么解决这个问题?

我正在使用 RHR5.0。

相关内容