Autotools:为多个目标全局添加库

时间:2017-03-20 16:09:22

标签: autotools automake cunit

我的项目有以下 Makefile.am 文件,但由于找不到CUnit函数符号,因此无法./configure

bin_PROGRAMS = test_one test_two

AM_CFLAGS = -Wall -pedantic -I../src
AM_LDFLAGS = \
    -Wl,-z,relro \
    -Wl,-z,now
AM_LDADD = -lcunit -lmylib

test_one_SOURCES = test_one.c ../src/another.c
test_two_SOURCES = test_two.c ../src/another.c

如何全局添加(CUnit)库,一次针对所有目标?

0 个答案:

没有答案