Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dune-common
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Core Modules
dune-common
Commits
37c8ac32
Commit
37c8ac32
authored
18 years ago
by
Christian Engwer
Browse files
Options
Downloads
Patches
Plain Diff
improved intermodule lib handling
[[Imported from SVN: r4503]]
parent
d0b97f7f
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
common/test/Makefile.am
+16
-20
16 additions, 20 deletions
common/test/Makefile.am
configure.ac
+2
-2
2 additions, 2 deletions
configure.ac
m4/dune.m4
+1
-1
1 addition, 1 deletion
m4/dune.m4
with
19 additions
and
23 deletions
common/test/Makefile.am
+
16
−
20
View file @
37c8ac32
...
...
@@ -11,49 +11,45 @@ TESTS = $(TESTPROGS)
# programs just to build when "make check" is used
check_PROGRAMS
=
$(
TESTPROGS
)
# output code coverage
#AM_CXXFLAGS = -fprofile-arcs -ftest-coverage
AM_LDFLAGS
=
$(
LIBDUNE
)
# define the programs
parsetest_SOURCES
=
parsetest.cc
parsetest_DEPENDENCIES
=
$(
L
IBDUNE
)
parsetest_DEPENDENCIES
=
$(
L
OCAL_LIBS
)
sllisttest_SOURCES
=
sllisttest.cc
sllisttest_DEPENDENCIES
=
$(
L
IBDUNE
)
sllisttest_DEPENDENCIES
=
$(
L
OCAL_LIBS
)
test_stack_SOURCES
=
test-stack.cc
test_stack_DEPENDENCIES
=
$(
L
IBDUNE
)
test_stack_DEPENDENCIES
=
$(
L
OCAL_LIBS
)
arraylisttest_SOURCES
=
arraylisttest.cc
arraylisttest_DEPENDENCIES
=
$(
L
IBDUNE
)
arraylisttest_DEPENDENCIES
=
$(
L
OCAL_LIBS
)
smartpointertest_SOURCES
=
smartpointertest.cc
smartpointertest_DEPENDENCIES
=
$(
L
IBDUNE
)
smartpointertest_DEPENDENCIES
=
$(
L
OCAL_LIBS
)
tuplestest_SOURCES
=
tuplestest.cc
tuplestest_DEPENDENCIES
=
$(
L
IBDUNE
)
tuplestest_DEPENDENCIES
=
$(
L
OCAL_LIBS
)
streamtest_SOURCES
=
streamtest.cc
streamtest_DEPENDENCIES
=
$(
L
IBDUNE
)
streamtest_DEPENDENCIES
=
$(
L
OCAL_LIBS
)
# mention headers so that they are distributed too
iteratorfacadetest_SOURCES
=
iteratorfacadetest.cc iteratorfacadetest.hh
\
iteratortest.hh
iteratorfacadetest_DEPENDENCIES
=
$(
L
IBDUNE
)
iteratorfacadetest_DEPENDENCIES
=
$(
L
OCAL_LIBS
)
fmatrixtest_SOURCES
=
fmatrixtest.cc
fmatrixtest_DEPENDENCIES
=
$(
L
IBDUNE
)
fmatrixtest_DEPENDENCIES
=
$(
L
OCAL_LIBS
)
poolallocatortest_SOURCES
=
poolallocatortest.cc
poolallocatortest_DEPENDENCIES
=
$(
L
IBDUNE
)
poolallocatortest_DEPENDENCIES
=
$(
L
OCAL_LIBS
)
settest_SOURCES
=
settest.cc
settest_DEPENDENCIES
=
$(
L
IBDUNE
)
settest_DEPENDENCIES
=
$(
L
OCAL_LIBS
)
gcdlcdtest_SOURCES
=
gcdlcdtest.cc
gcdlcdtest_DEPENDENCIES
=
$(
L
IBDUNE
)
gcdlcdtest_DEPENDENCIES
=
$(
L
OCAL_LIBS
)
sourcescheck_NOSOURCES
=
exprtmpl.cc
# bin_PROGRAMS = exprtmpl timing_old timing_xpr timing_flt
...
...
@@ -61,16 +57,16 @@ sourcescheck_NOSOURCES = exprtmpl.cc
exprtmpl_SOURCES
=
exprtmpl.cc
exprtmpl_CXXFLAGS
=
-DDUNE_EXPRESSIONTEMPLATES
-DDUNE_ISTL_WITH_CHECKING
-g
# -DNOPRINT
exprtmpl_DEPENDENCIES
=
$(
L
IBDUNE
)
exprtmpl_DEPENDENCIES
=
$(
L
OCAL_LIBS
)
dist_noinst_DATA
=
timing.cc
timing_old_SOURCES
=
timing.cc
timing_old_DEPENDENCIES
=
$(
L
IBDUNE
)
timing_old_DEPENDENCIES
=
$(
L
OCAL_LIBS
)
timing_xpr_SOURCES
=
timing.cc
timing_xpr_CXXFLAGS
=
-DDUNE_EXPRESSIONTEMPLATES
-g
timing_xpr_DEPENDENCIES
=
$(
L
IBDUNE
)
timing_xpr_DEPENDENCIES
=
$(
L
OCAL_LIBS
)
timing_flt_SOURCES
=
timing.cc
timing_flt_CXXFLAGS
=
-DDUNE_EXPRESSIONTEMPLATES
-DDUNE_FLATIT
-g
timing_flt_DEPENDENCIES
=
$(
L
IBDUNE
)
timing_flt_DEPENDENCIES
=
$(
L
OCAL_LIBS
)
include
$(top_srcdir)/am/global-rules
This diff is collapsed.
Click to expand it.
configure.ac
+
2
−
2
View file @
37c8ac32
...
...
@@ -15,8 +15,8 @@ fi
# preset variable to path such that #include <dune/...> works
AC_SUBST([AM_CPPFLAGS], '
-I
$(
top_srcdir
)
')
AC_SUBST([L
IBDUNE
], '
$(
top_builddir
)
/common/libcommon.la
')
AC_SUBST([AM_LDFLAGS], '
-L
$(
top_builddir
)
/common
-lcommon
')
AC_SUBST([L
OCAL_LIBS
], '
$(
top_builddir
)
/common/libcommon.la
')
DUNE_SUMMARY_ALL
...
...
This diff is collapsed.
Click to expand it.
m4/dune.m4
+
1
−
1
View file @
37c8ac32
...
...
@@ -77,7 +77,7 @@ AC_DEFUN([DUNE_CHECK_MODULES],[
# only check for a .la-file
if
test
-s
$_DUNE_MODULE
[]
ROOT/_dune_ldpath/lib[]_dune_lib[].la
;
then
_DUNE_MODULE[]_LDFLAGS
=
"-L
$_DUNE_MODULE
[]ROOT/_dune_ldpath"
echo
found lib[]_dune_lib.la, setting LDFLAGS to _DUNE_MODULE[]_LDFLAGS
echo
found lib[]_dune_lib.la, setting LDFLAGS to
$
_DUNE_MODULE
[]
_LDFLAGS
# provide arguments like normal lib-check
_DUNE_MODULE[]_LIBS
=
"-l[]_dune_lib"
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment