我正在尝试学习Makefile。我做了一些有用的小项目,但现在我正在扩展它,但没有运气。这是个问题。我试图编译子目录中的所有文件,然后将它们存储在构建/对象目录(我无法工作)中,并将二进制文件链接到构建/对象目录中的文件。这是我到目前为止所得到的:
#compiler vars
CC=g++
CFLAGS=-c -Wall
LDFLAGS=
#build vars
INCLUDE=-I. -IFramework/ -IGame/
SOURCES=test.cpp
include Modules.mk
ifeq ($(mod3D), true)
SOURCES += $(mod3D_src)
INCLUDE += $(mod3D_include)
endif
ifeq ($(mod2D), true)
SOURCES += $(mod2D_src)
INCLUDE += $(mod2D_include)
endif
ifeq ($(modInput), true)
SOURCES += $(modInput_src)
INCLUDE += $(modInput_include)
endif
OBJECTS=$(SOURCES:.cpp=.o)
OUTPUT=game.bin
all: $(SOURCES) $(OUTPUT)
$(OUTPUT): $(OBJECTS)
$(CC) $(LDFLAGS) $(OBJECTS) -o $@
.cpp.o: $(SOURCES)
$(CC) $(CFLAGS) $(INCLUDE) $< -o $@
.PHONY: clean
clean:
-rm $(OUTPUT) $(OBJECTS)
Modules.mk
#Modules
mod3D=true
mod2D=true
modInput=true
mod3D_include=-IGraphics3D
mod2D_include=-IGraphics2D
modInput_include=-IInput
mod3D_src=Graphics3D/*.cpp
mod2D_src=#Graphics2D/*.cpp
modInput_src=Input/*.cpp
它给了我错误:
make: *** No rule to make target `Graphics3D/*.o', needed by `game.bin'. Stop.
我不知道我做错了什么。提前致谢, 卡西姆
答案 0 :(得分:0)
在形成先决条件时使用通配符是错误的。
看一下GNU make手册的这一部分:
http://www.gnu.org/software/make/manual/make.html#Wildcard-Pitfall
答案 1 :(得分:0)
修复非常简单:
mod3D_src = $(wildcard Graphics3D/*.cpp)
# and likewise:
mod2D_src = # $(wildcard Graphics2D/*.cpp)
modInput_src = $(wildcard Input/*.cpp)