具有不同源类型的 Makefile

发布于 2024-12-28 04:53:08 字数 211 浏览 0 评论 0原文

我正在尝试编写一个 makefile 来编译带有 .f.f90 扩展名的源文件的程序。我有编译对象的规则:

%.o: %.f90
       $(FC) $(FFLAGS) -c $< -o $(OBJ)/$@

如何扩展它以与 .f 文件一起使用?

I am trying to write a makefile for compiling a program with source files with both .f and .f90 extensions. I have the rule to compile the objects:

%.o: %.f90
       $(FC) $(FFLAGS) -c 
lt; -o $(OBJ)/$@

How can I extend this to work with the .f files as well?

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

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

发布评论

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

评论(1

-小熊_ 2025-01-04 04:53:08

您需要有两个单独的规则:一个用于 .f 文件,另一个用于 .f90 文件。例如:

TARGET := a.out
OBJFILES := foo.f bar.f90
OBJ := ./obj

%.o: %.f90
    $(FC) $(FFLAGS) -c 
lt; -o $(OBJ)/$@

%.o: %.f
    $(FC) $(FFLAGS) -c 
lt; -o $(OBJ)/$@

%(TARGET): $(OBJFILES)
    $(FC) $(FFLAGS) -o $@ $(addprefix $(OBJ)/,$(OBJFILES))

或者类似的东西应该可以解决问题。

You will need to have two separate rules: one for the .f files and one for the .f90 files. For example:

TARGET := a.out
OBJFILES := foo.f bar.f90
OBJ := ./obj

%.o: %.f90
    $(FC) $(FFLAGS) -c 
lt; -o $(OBJ)/$@

%.o: %.f
    $(FC) $(FFLAGS) -c 
lt; -o $(OBJ)/$@

%(TARGET): $(OBJFILES)
    $(FC) $(FFLAGS) -o $@ $(addprefix $(OBJ)/,$(OBJFILES))

or something similar should do the trick.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文