diff options
Diffstat (limited to 'libwombat')
-rw-r--r-- | libwombat/ChangeLog | 5 | ||||
-rw-r--r-- | libwombat/Makefile.am | 7 |
2 files changed, 12 insertions, 0 deletions
diff --git a/libwombat/ChangeLog b/libwombat/ChangeLog index e57a63dc8e..ee061f99e0 100644 --- a/libwombat/ChangeLog +++ b/libwombat/ChangeLog @@ -1,3 +1,8 @@ +2001-06-25 <peterw@ximian.com> + + * Makefile.am (libwombat_static_la_SOURCES): Create a static + libwombat for the conduits. + 2001-06-23 Jason Leach <jleach@ximian.com> * Makefile.am: builddir != srcdir fixes. diff --git a/libwombat/Makefile.am b/libwombat/Makefile.am index 7219569145..9fa5bd9c70 100644 --- a/libwombat/Makefile.am +++ b/libwombat/Makefile.am @@ -28,3 +28,10 @@ libwombat_la_SOURCES = \ $(IDL_GENERATED) \ wombat-client.c \ $(wombatinclude_HEADERS) + +# Static lib for pilot conduits + +noinst_LTLIBRARIES = libwombat-static.la + +libwombat_static_la_SOURCES = $(libwombat_la_SOURCES) +libwombat_static_la_LDFLAGS = --all-static |