指定 makefile 的依赖关系

发布于 2024-10-12 01:58:46 字数 491 浏览 1 评论 0原文

我希望这对外面的人来说是显而易见的。我正在创建一个需要一些特殊编译的 makefile。我有 cuda 文件和 c++ 文件,每个文件都需要单独编译。我希望能够指定文件,然后根据

CUDA_FILES := file1.cu file2.cu file3.cu
CPP_FILES := file4.cpp file5.cpp

# lots of options

#rules:
all: project1

project1: file1.o file2.o file3.o file4.o file5.o
  $(LD) $(LDLIBS) $^ -o $@

%.o: %.cu
  $(CUDA) $(CUDA_ARCH) $(CUDA_OPTIONS) $(CUDA_INCLUDES) -Xcompiler "$(COMPILER OPTIONS" $^ -o $@

project1: 行列出最终输出的依赖项,如何从文件列表中自动生成对象列表以指定为依赖?

I hope that this is obvious to someone out there. I am creating a makefile that I need some special compilation for. I have cuda files and c++ files each need to be compiled separately. I want to be able to specify the file and then list the dependencies for the final output in terms of the

CUDA_FILES := file1.cu file2.cu file3.cu
CPP_FILES := file4.cpp file5.cpp

# lots of options

#rules:
all: project1

project1: file1.o file2.o file3.o file4.o file5.o
  $(LD) $(LDLIBS) $^ -o $@

%.o: %.cu
  $(CUDA) $(CUDA_ARCH) $(CUDA_OPTIONS) $(CUDA_INCLUDES) -Xcompiler "$(COMPILER OPTIONS" $^ -o $@

for the line with project1: how do I automatically generate the object list from the files lists to specify as a dependency?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

逆光下的微笑 2024-10-19 01:58:46

只需列出目标文件而不是源文件:

$ cat Makefile
OBJS = a.o b.o

foo: a.o b.o
        $(LD) -o $@ $^
$ make
cc    -c -o a.o a.c
cc    -c -o b.o b.c
ld -o foo a.o b.o

编辑:如果您不想遵循此方法,请使用字符串替换

OBJS = $(CUDA_FILES:%.cu=%.o) $(CPP_FILES:%.cpp=%.o)

Just list the object files instead of the source files:

$ cat Makefile
OBJS = a.o b.o

foo: a.o b.o
        $(LD) -o $@ $^
$ make
cc    -c -o a.o a.c
cc    -c -o b.o b.c
ld -o foo a.o b.o

Edit: If you don't want to follow this method, use string substitution:

OBJS = $(CUDA_FILES:%.cu=%.o) $(CPP_FILES:%.cpp=%.o)
时光磨忆 2024-10-19 01:58:46
CUDA_FILES := $(wildcard *.cu)
CC_FILES := $(wildcard *.cpp)

OBJS := $(CUDA_FILES:.cu=.o) $(CC_FILES:.cc=.o)
CUDA_FILES := $(wildcard *.cu)
CC_FILES := $(wildcard *.cpp)

OBJS := $(CUDA_FILES:.cu=.o) $(CC_FILES:.cc=.o)
少女净妖师 2024-10-19 01:58:46

我建议使用更现代的字符串替换函数,例如:

dogCpp := dog.cpp dogSays.cpp
dogObj := $(patsubst %.cpp,%.o,${dogCpp}) 

I would suggest using the more modern string substitution functions, like:

dogCpp := dog.cpp dogSays.cpp
dogObj := $(patsubst %.cpp,%.o,${dogCpp}) 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文