-
Notifications
You must be signed in to change notification settings - Fork 50
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 #191 from trws/shared-library-core
module libraries and libcore built as shared libs
- Loading branch information
Showing
33 changed files
with
161 additions
and
142 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
.NOTPARALLEL: | ||
|
||
SUBDIRS = src doc etc t | ||
|
||
EXTRA_DIST = \ | ||
|
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,3 +1,9 @@ | ||
SUBDIRS = common modules broker connectors lib bindings cmd test | ||
.NOTPARALLEL: | ||
|
||
#This order is *important*, common must preceed modules, | ||
# modules must preceed lib | ||
SUBDIRS = common modules lib broker connectors bindings cmd test | ||
|
||
check-local: all | ||
|
||
noinst_HEADERS = include/flux/core.h |
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,27 @@ | ||
SUBDIRS = libtap libev liblsd libutil libflux libzio libmrpc | ||
SUBDIRS = libtap libev liblsd libutil libflux libzio | ||
|
||
AM_CFLAGS = @GCCWARN@ | ||
|
||
AM_CPPFLAGS = | ||
|
||
fluxinclude_HEADERS = core.h | ||
noinst_LTLIBRARIES = libflux-internal.la | ||
fluxlib_LTLIBRARIES = libflux-core.la | ||
libflux_internal_la_SOURCES = | ||
libflux_internal_la_LIBADD = \ | ||
$(builddir)/libflux/libflux.la \ | ||
$(builddir)/liblsd/liblsd.la \ | ||
$(builddir)/libutil/libutil.la \ | ||
$(builddir)/libev/libev.la \ | ||
$(LIBMUNGE) $(JSON_LIBS) $(LIBZMQ) $(LIBCZMQ) $(LIBPTHREAD) $(LIBUTIL) \ | ||
$(LIBDL) -lrt | ||
libflux_core_la_SOURCES = | ||
libflux_core_la_LIBADD = \ | ||
libflux-internal.la | ||
#-lrt is for clock_gettime, this should be abstracted | ||
|
||
libflux_core_la_LDFLAGS = -Wl,--version-script=$(srcdir)/version.map \ | ||
-shared -export-dynamic --disable-static \ | ||
-Wl,--no-undefined | ||
|
||
EXTRA_DIST = version.map |
File renamed without changes.
This file was deleted.
Oops, something went wrong.
File renamed without changes.
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 @@ | ||
SUBDIRS = libcore libpmi | ||
SUBDIRS = libpmi |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,2 @@ | ||
SUBDIRS = api kvs modctl live mecho barrier wreck | ||
#This order is *important* | ||
SUBDIRS = api kvs libmrpc modctl live mecho barrier wreck |
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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
AM_CFLAGS = @GCCWARN@ | ||
|
||
AM_CPPFLAGS = \ | ||
$(JSON_CFLAGS) \ | ||
-I$(top_srcdir) -I$(top_srcdir)/src/include | ||
|
||
fluxlib_LTLIBRARIES = libmrpc.la | ||
|
||
libmrpc_la_SOURCES = \ | ||
mrpc.c \ | ||
mrpc.h | ||
libmrpc_la_LDFLAGS = -shared -export-dynamic \ | ||
$(top_builddir)/src/common/libflux-internal.la \ | ||
$(top_builddir)/src/common/libflux-core.la \ | ||
$(top_builddir)/src/modules/kvs/libkvs.la \ | ||
$(LIBMUNGE) $(JSON_LIBS) $(LIBZMQ) $(LIBCZMQ) $(LIBPTHREAD) $(LIBUTIL) \ | ||
$(LIBDL) -lrt |
File renamed without changes.
File renamed without changes.
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
Oops, something went wrong.