forked from flux-framework/flux-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request flux-framework#5390 from garlick/issue#5387
do not search for module and connector DSOs recursively
- Loading branch information
Showing
12 changed files
with
82 additions
and
109 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,55 @@ | ||
SUBDIRS = local shmem loop ssh | ||
AM_CFLAGS = \ | ||
$(WARNING_CFLAGS) \ | ||
$(CODE_COVERAGE_CFLAGS) | ||
|
||
AM_LDFLAGS = \ | ||
$(CODE_COVERAGE_LIBS) | ||
|
||
AM_CPPFLAGS = \ | ||
-I$(top_srcdir) \ | ||
-I$(top_srcdir)/src/include \ | ||
-I$(top_builddir)/src/common/libflux \ | ||
-I$(top_srcdir)/src/common/libccan | ||
|
||
fluxconnector_LTLIBRARIES = \ | ||
local.la \ | ||
loop.la \ | ||
shmem.la \ | ||
ssh.la | ||
|
||
connector_ldflags = -module $(san_ld_zdef_flag) \ | ||
-export-symbols-regex '^connector_init$$' \ | ||
--disable-static -avoid-version -shared -export-dynamic | ||
|
||
local_la_SOURCES = \ | ||
local/local.c | ||
local_la_LIBADD = \ | ||
$(top_builddir)/src/common/libflux-internal.la \ | ||
$(top_builddir)/src/common/libflux-core.la | ||
local_la_LDFLAGS = $(connector_ldflags) | ||
|
||
loop_la_SOURCES = \ | ||
loop/loop.c | ||
loop_la_LIBADD = \ | ||
$(top_builddir)/src/common/libflux-internal.la \ | ||
$(top_builddir)/src/common/libflux-core.la | ||
loop_la_LDFLAGS = $(connector_ldflags) | ||
|
||
shmem_la_SOURCES = \ | ||
shmem/shmem.c | ||
shmem_la_CPPFLAGS = \ | ||
$(AM_CPPFLAGS) \ | ||
$(ZMQ_CFLAGS) | ||
shmem_la_LIBADD = \ | ||
$(top_builddir)/src/common/libflux-internal.la \ | ||
$(top_builddir)/src/common/libflux-core.la \ | ||
$(top_builddir)/src/common/libzmqutil/libzmqutil.la \ | ||
$(ZMQ_LIBS) | ||
shmem_la_LDFLAGS = $(connector_ldflags) | ||
|
||
ssh_la_SOURCES = \ | ||
ssh/ssh.c | ||
ssh_la_LIBADD = \ | ||
$(top_builddir)/src/common/libflux-internal.la \ | ||
$(top_builddir)/src/common/libflux-core.la | ||
ssh_la_LDFLAGS = $(connector_ldflags) |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.