gpt4 book ai didi

c - Automake + 库工具 : pattern rule for per-object CFLAGS?

转载 作者:太空宇宙 更新时间:2023-11-04 03:43:01 24 4
gpt4 key购买 nike

我正在使用 GNU Automake 和 libtool 来编译我的程序。我的 Makefile.am 看起来像这样:

lib_LTLIBRARIES = \
libObjectively.la

libObjectively_la_SOURCES = \
Array.c \
Class.c \
Condition.c \
Date.c \
DateFormatter.c \
Dictionary.c \
Lock.c \
Log.c \
Object.c \
String.c \
Thread.c

libObjectively_la_CFLAGS = \
-I ..

libObjectively_la_LDFLAGS = \
-pthread \
-shared

一切都编译得很好。但是,我喜欢也使用模式规则为每个源文件设置CFLAGS。在常规的旧 Makefile 语法中,这看起来像:

%.o: %.c
$(CC) $(CFLAGS) -D__Class=$(subst .o,,$@) -o $@ $<

有没有办法用 Automake + libtool 做到这一点?

最佳答案

事实证明,没有可移植的方式来做这类事情。

关于c - Automake + 库工具 : pattern rule for per-object CFLAGS?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27001145/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com