Changeset d459ab in git for kernel/numeric/Makefile.am


Ignore:
Timestamp:
Mar 11, 2024, 9:37:36 AM (2 months ago)
Author:
Michael Orlitzky <michael@…>
Branches:
(u'spielwiese', 'd08f5f0bb3329b8ca19f23b74cb1473686415c3a')
Children:
ae39460c5fa2a195f50c59b3ca31f128f907e44c
Parents:
45eca675525f9188a5fb3c1070657a0f5cf2d81f
git-author:
Michael Orlitzky <michael@orlitzky.com>2024-03-11 04:37:36-04:00
git-committer:
GitHub <noreply@github.com>2024-03-11 09:37:36+01:00
Message:
**/Makefile.am: links tests with RESOURCES_LIBS (#1211)

Several test programs use functions from libsingular_resources, such
as feInitResources(). Here we ensure that those test programs are
actually linked with libsingular_resources by adding RESOURCES_LIBS to
the corresponding LDADD lines. In the process, and for consistency, we
have replaced some references to libomalloc.la with OMALLOC_LIBS.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/numeric/Makefile.am

    r45eca6 rd459ab  
    1919check_PROGRAMS = $(TESTS)
    2020test_SOURCES = test.cc
    21 test_LDADD   = libnumeric.la ${builddir}/../../omalloc/libomalloc.la ${builddir}/../../Singular/libSingular.la
     21test_LDADD   = libnumeric.la $(OMALLOC_LIBS) ${builddir}/../../Singular/libSingular.la $(RESOURCES_LIBS)
    2222
    2323CLEANFILES = $(TESTS)
Note: See TracChangeset for help on using the changeset viewer.