现在我有一个makefile可以工作。我将其重命名为Makefile.ws,并在Makefile中编写了以下代码 make -f Makefile.w32
make -f Makefile.w32f Makefile.w32make[3]: *** No rule to make target `Makefile
我为一个程序编写了一个生成文件,如下所示LIBS = -lpthreadEXECUTABLE = Code_In_C
${CC} -o ${EXECUTABLE} ${LIBS} ${CODE_FILE}Panther!simpleguy:~/Code [63]$ make all make.def
make: *** No rule to make
我刚开始使用makefile,并尝试生成一个基本的makefile作为大学练习的一部分。这是我到目前为止为makefile编写的代码: ld -N chello.o writeexit.o -o chello
chello.o当我调用'make makefile‘时,它返回'make: Nothing to be to for’makefile‘。’