我的项目有以下 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)库,一次针对所有目标?