我是Makefile的新手,試圖用它創建一個cpp項目。 現在我只有「hello world」程序(只有main.cpp文件)。 我不能停止想用make編譯時收到此錯誤:出錯:「g ++:error:main.o:沒有這樣的文件或目錄」
g++ -std=c++0x -g -Wall -o sub_game main.o
g++: error: main.o: No such file or directory
g++: fatal error: no input files
compilation terminated.
Makefile:38: recipe for target 'sub_game' failed
make: *** [sub_game] Error 4
我不明白我做錯了,希望得到您的幫助。
是Makefile:
# the compiler: gcc for C program, define as g++ for C++
CC = g++
# compiler flags:
# -g adds debugging information to the executable file
# -Wall turns on most, but not all, compiler warnings
CXXLAGS = -std=c++0x -g -Wall
# the build target executable:
TARGET = sub_game
# define any libraries to link into executable:
LIBS = -lpthread -lgtest
# define the C source files
SRCS = ../src
# define the C object files
#
# This uses Suffix Replacement within a macro:
# $(name:string1=string2)
# For each word in 'name' replace 'string1' with 'string2'
# Below we are replacing the suffix .cc of all words in the macro SRCS
# with the .o suffix
#
#OBJ = $(SRCS)/main.cc
OBJ = main.o
# define any directories containing header files other than /usr/include
#
INCLUDES = -I../include
all : $(TARGET)
$(TARGET) : $(OBJ)
$(CC) $(CXXLAGS) -o $(TARGET) $(OBJ)
main.o : $(SRCS)/main.cpp
.PHONY : clean
clean :
rm $(TARGET) $(OBJ)
謝謝你在先進。
似乎沒問題。試着寫一個編譯main.o規則的命令。 – EFenix
我添加了這個規則,它的工作: g ++ -c $(SRCS)/main.cpp 這就是我需要添加的所有東西嗎? – dorash
我想現在可以...順便說一下,使用CXXFLAGS(不是CXXLAGS) – EFenix