如何自动化生成文件?

发布于 2024-10-19 18:01:41 字数 247 浏览 1 评论 0原文

如何使 makefile 遍历 .cpp 文件列表并单独编译,就像静态那样?

test: test.o
        g++ -o test test.o
test.o: test.cc test.hh
        g++ -c test.cc

但从这个动态?

SOURCES = main.cpp someClass.cpp otherFile.cpp

How do you make a makefile go through a list of .cpp files and compile then separately, just like this does statically?

test: test.o
        g++ -o test test.o
test.o: test.cc test.hh
        g++ -c test.cc

but dynamically from this?

SOURCES = main.cpp someClass.cpp otherFile.cpp

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

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

发布评论

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

评论(3

季末如歌 2024-10-26 18:01:41
OBJECTS = main.o someClass.o otherFile.o

all: $OBJECTS 
%.o: %.cc
   g++ 
lt; -c -o $@

如果您也想为每个模块强制使用类似名称的标头,那么您可以:

OBJECTS = main.o someClass.o otherFile.o

all: $OBJECTS 
%.o: %.cc %.hh
   g++ 
lt; -c -o $@
OBJECTS = main.o someClass.o otherFile.o

all: $OBJECTS 
%.o: %.cc
   g++ 
lt; -c -o $@

If you want to enforce like-named headers for each module, too, then you can:

OBJECTS = main.o someClass.o otherFile.o

all: $OBJECTS 
%.o: %.cc %.hh
   g++ 
lt; -c -o $@
怎樣才叫好 2024-10-26 18:01:41

automake 使这变得更加容易:

program_SOURCES = main.cpp someClass.cpp otherFile.cpp

将从列出的源构建程序文件。唯一的问题是它与 autoconf 一起工作,这可能需要一些时间才能正确设置。 (至少,我第一次从来没有做对过。)

automake makes this even easier:

program_SOURCES = main.cpp someClass.cpp otherFile.cpp

will build program from the listed source files. The only problem is that it works in conjunction with autoconf, which may take some time to set up properly. (At least, I never get it right the first time.)

蓝眼睛不忧郁 2024-10-26 18:01:41

您也可以尝试:

SOURCES=$(shell ls *.cpp)
OBJECTS=$(SOURCES:%.cpp=%.o)

%.o: %.cpp
    g++ -c %< -o $@

这样您就不必指定任何 cpp 名称。您添加的任何新源文件都会被自动选取。然而,这仅适用于 Unix shell。

You could also try:

SOURCES=$(shell ls *.cpp)
OBJECTS=$(SOURCES:%.cpp=%.o)

%.o: %.cpp
    g++ -c %< -o $@

This way you don't have to specify any cpp names. Any new source files you add will automatically be picked up. However, this would only work in Unix shells.

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