diff -urN aaa/SimGear-0.3.4/configure.ac SimGear-0.3.4/configure.ac --- aaa/SimGear-0.3.4/configure.ac 2003-10-22 21:21:24.000000000 +0200 +++ SimGear-0.3.4/configure.ac 2003-11-10 22:18:37.000000000 +0100 @@ -34,7 +34,7 @@ AC_PROG_CC AC_PROG_CPP AC_PROG_CXX -AC_PROG_RANLIB +AC_PROG_LIBTOOL AC_PROG_INSTALL AC_PROG_LN_S diff -urN aaa/SimGear-0.3.4/simgear/bucket/Makefile.am SimGear-0.3.4/simgear/bucket/Makefile.am --- aaa/SimGear-0.3.4/simgear/bucket/Makefile.am 2002-09-07 04:58:19.000000000 +0200 +++ SimGear-0.3.4/simgear/bucket/Makefile.am 2003-11-10 22:18:37.000000000 +0100 @@ -1,10 +1,10 @@ includedir = @includedir@/bucket -lib_LIBRARIES = libsgbucket.a +lib_LTLIBRARIES = libsgbucket.la include_HEADERS = newbucket.hxx -libsgbucket_a_SOURCES = newbucket.cxx +libsgbucket_la_SOURCES = newbucket.cxx # noinst_PROGRAMS = testbucket diff -urN aaa/SimGear-0.3.4/simgear/debug/Makefile.am SimGear-0.3.4/simgear/debug/Makefile.am --- aaa/SimGear-0.3.4/simgear/debug/Makefile.am 2002-09-07 04:58:19.000000000 +0200 +++ SimGear-0.3.4/simgear/debug/Makefile.am 2003-11-10 22:18:37.000000000 +0100 @@ -2,10 +2,10 @@ EXTRA_DIST = logtest.cxx -lib_LIBRARIES = libsgdebug.a +lib_LTLIBRARIES = libsgdebug.la include_HEADERS = debug_types.h logstream.hxx -libsgdebug_a_SOURCES = logstream.cxx +libsgdebug_la_SOURCES = logstream.cxx INCLUDES = -I$(top_srcdir) diff -urN aaa/SimGear-0.3.4/simgear/ephemeris/Makefile.am SimGear-0.3.4/simgear/ephemeris/Makefile.am --- aaa/SimGear-0.3.4/simgear/ephemeris/Makefile.am 2003-08-29 19:36:27.000000000 +0200 +++ SimGear-0.3.4/simgear/ephemeris/Makefile.am 2003-11-10 22:18:37.000000000 +0100 @@ -1,6 +1,6 @@ includedir = @includedir@/ephemeris -lib_LIBRARIES = libsgephem.a +lib_LTLIBRARIES = libsgephem.la include_HEADERS = \ celestialBody.hxx \ @@ -16,7 +16,7 @@ uranus.hxx \ venus.hxx -libsgephem_a_SOURCES = \ +libsgephem_la_SOURCES = \ celestialBody.cxx \ ephemeris.cxx \ jupiter.cxx \ diff -urN aaa/SimGear-0.3.4/simgear/io/Makefile.am SimGear-0.3.4/simgear/io/Makefile.am --- aaa/SimGear-0.3.4/simgear/io/Makefile.am 2003-08-29 19:36:28.000000000 +0200 +++ SimGear-0.3.4/simgear/io/Makefile.am 2003-11-11 00:48:35.000000000 +0100 @@ -1,6 +1,6 @@ includedir = @includedir@/io -lib_LIBRARIES = libsgio.a +lib_LTLIBRARIES = libsgio.la include_HEADERS = \ iochannel.hxx \ @@ -11,7 +11,7 @@ sg_socket.hxx \ sg_socket_udp.hxx -libsgio_a_SOURCES = \ +libsgio_la_SOURCES = \ iochannel.cxx \ lowlevel.cxx \ sg_binobj.cxx \ @@ -27,10 +27,11 @@ tcp_server_SOURCES = tcp_server.cxx tcp_server_LDADD = \ - $(top_builddir)/simgear/io/libsgio.a \ - $(top_builddir)/simgear/debug/libsgdebug.a \ - $(top_builddir)/simgear/bucket/libsgbucket.a \ - $(top_builddir)/simgear/misc/libsgmisc.a \ + $(top_builddir)/simgear/io/libsgio.la \ + $(top_builddir)/simgear/debug/libsgdebug.la \ + $(top_builddir)/simgear/bucket/libsgbucket.la \ + $(top_builddir)/simgear/misc/libsgmisc.la \ + $(top_builddir)/simgear/serial/libsgserial.la \ -lplibnet -lplibul -lz \ $(network_LIBS) \ $(base_LIBS) @@ -38,10 +39,11 @@ tcp_client_SOURCES = tcp_client.cxx tcp_client_LDADD = \ - $(top_builddir)/simgear/io/libsgio.a \ - $(top_builddir)/simgear/debug/libsgdebug.a \ - $(top_builddir)/simgear/bucket/libsgbucket.a \ - $(top_builddir)/simgear/misc/libsgmisc.a \ + $(top_builddir)/simgear/io/libsgio.la \ + $(top_builddir)/simgear/debug/libsgdebug.la \ + $(top_builddir)/simgear/bucket/libsgbucket.la \ + $(top_builddir)/simgear/misc/libsgmisc.la \ + $(top_builddir)/simgear/serial/libsgserial.la \ -lplibnet -lplibul -lz \ $(network_LIBS) \ $(base_LIBS) @@ -49,10 +51,11 @@ socktest_SOURCES = socktest.cxx socktest_LDADD = \ - $(top_builddir)/simgear/bucket/libsgbucket.a \ - $(top_builddir)/simgear/io/libsgio.a \ - $(top_builddir)/simgear/debug/libsgdebug.a \ - $(top_builddir)/simgear/misc/libsgmisc.a \ + $(top_builddir)/simgear/bucket/libsgbucket.la \ + $(top_builddir)/simgear/io/libsgio.la \ + $(top_builddir)/simgear/debug/libsgdebug.la \ + $(top_builddir)/simgear/misc/libsgmisc.la \ + $(top_builddir)/simgear/serial/libsgserial.la \ -lplibnet -lplibul -lz \ $(network_LIBS) \ $(base_LIBS) @@ -60,13 +63,19 @@ lowtest_SOURCES = lowtest.cxx lowtest_LDADD = \ - $(top_builddir)/simgear/io/libsgio.a + $(top_builddir)/simgear/io/libsgio.la \ + $(top_builddir)/simgear/bucket/libsgbucket.la \ + $(top_builddir)/simgear/serial/libsgserial.la \ + $(top_builddir)/simgear/debug/libsgdebug.la \ + $(top_builddir)/simgear/misc/libsgmisc.la \ + -lplibnet -lplibul -lz decode_binobj_SOURCES = decode_binobj.cxx decode_binobj_LDADD = \ - $(top_builddir)/simgear/io/libsgio.a \ - $(top_builddir)/simgear/bucket/libsgbucket.a \ - $(top_builddir)/simgear/misc/libsgmisc.a \ - $(top_builddir)/simgear/debug/libsgdebug.a \ - $(base_LIBS) -lz + $(top_builddir)/simgear/io/libsgio.la \ + $(top_builddir)/simgear/bucket/libsgbucket.la \ + $(top_builddir)/simgear/misc/libsgmisc.la \ + $(top_builddir)/simgear/debug/libsgdebug.la \ + $(top_builddir)/simgear/serial/libsgserial.la \ + $(base_LIBS) -lz -lplibnet -lplibul diff -urN aaa/SimGear-0.3.4/simgear/magvar/Makefile.am SimGear-0.3.4/simgear/magvar/Makefile.am --- aaa/SimGear-0.3.4/simgear/magvar/Makefile.am 2003-08-29 19:36:28.000000000 +0200 +++ SimGear-0.3.4/simgear/magvar/Makefile.am 2003-11-10 22:24:20.000000000 +0100 @@ -1,10 +1,10 @@ includedir = @includedir@/magvar -lib_LIBRARIES = libsgmagvar.a +lib_LTLIBRARIES = libsgmagvar.la include_HEADERS = magvar.hxx -libsgmagvar_a_SOURCES = \ +libsgmagvar_la_SOURCES = \ coremag.hxx coremag.cxx \ magvar.cxx @@ -13,7 +13,7 @@ testmagvar_SOURCES = testmagvar.cxx testmagvar_LDADD = \ - $(top_builddir)/simgear/magvar/libsgmagvar.a \ + $(top_builddir)/simgear/magvar/libsgmagvar.la \ $(base_LIBS) INCLUDES = -I$(top_srcdir) diff -urN aaa/SimGear-0.3.4/simgear/Makefile.am SimGear-0.3.4/simgear/Makefile.am --- aaa/SimGear-0.3.4/simgear/Makefile.am 2003-10-15 22:10:58.000000000 +0200 +++ SimGear-0.3.4/simgear/Makefile.am 2003-11-10 23:04:40.000000000 +0100 @@ -16,10 +16,12 @@ $(compatibility_DIR) \ xml \ debug \ - misc \ structure \ + timing \ + misc \ bucket \ ephemeris \ + serial \ io \ magvar \ math \ @@ -28,10 +30,8 @@ route \ scene \ screen \ - serial \ sound \ $(SGTHREAD_DIR) \ - timing \ xgl DIST_SUBDIRS = $(SUBDIRS) compatibility metar threads diff -urN aaa/SimGear-0.3.4/simgear/math/Makefile.am SimGear-0.3.4/simgear/math/Makefile.am --- aaa/SimGear-0.3.4/simgear/math/Makefile.am 2003-06-30 16:54:19.000000000 +0200 +++ SimGear-0.3.4/simgear/math/Makefile.am 2003-11-10 22:18:37.000000000 +0100 @@ -1,6 +1,6 @@ includedir = @includedir@/math -lib_LIBRARIES = libsgmath.a +lib_LTLIBRARIES = libsgmath.la include_HEADERS = \ interpolater.hxx \ @@ -17,7 +17,7 @@ EXTRA_DIST = linintp2.h linintp2.inl sphrintp.h sphrintp.inl -libsgmath_a_SOURCES = \ +libsgmath_la_SOURCES = \ interpolater.cxx \ leastsqs.cxx \ polar3d.cxx \ diff -urN aaa/SimGear-0.3.4/simgear/metar/Makefile.am SimGear-0.3.4/simgear/metar/Makefile.am --- aaa/SimGear-0.3.4/simgear/metar/Makefile.am 2002-09-07 04:58:19.000000000 +0200 +++ SimGear-0.3.4/simgear/metar/Makefile.am 2003-11-10 22:18:37.000000000 +0100 @@ -1,10 +1,10 @@ includedir = @includedir@/metar -lib_LIBRARIES = libsgmetar.a +lib_LTLIBRARIES = libsgmetar.la include_HEADERS = MetarReport.h MetarStation.h -libsgmetar_a_SOURCES = \ +libsgmetar_la_SOURCES = \ Antoi.cpp Charcmp.cpp Dcdmetar.cpp Dcdmtrmk.cpp Drvmetar.c \ Fracpart.cpp Local.h Metar.h \ MetarReport.cpp \ diff -urN aaa/SimGear-0.3.4/simgear/misc/Makefile.am SimGear-0.3.4/simgear/misc/Makefile.am --- aaa/SimGear-0.3.4/simgear/misc/Makefile.am 2003-09-24 19:53:47.000000000 +0200 +++ SimGear-0.3.4/simgear/misc/Makefile.am 2003-11-10 23:05:31.000000000 +0100 @@ -1,6 +1,6 @@ includedir = @includedir@/misc -lib_LIBRARIES = libsgmisc.a +lib_LTLIBRARIES = libsgmisc.la include_HEADERS = \ sg_path.hxx \ @@ -11,7 +11,7 @@ texcoord.hxx \ zfstream.hxx -libsgmisc_a_SOURCES = \ +libsgmisc_la_SOURCES = \ sg_path.cxx \ sgstream.cxx \ strutils.cxx \ @@ -23,8 +23,11 @@ tabbed_value_test_SOURCES = tabbed_values_test.cxx tabbed_value_test_LDADD = \ - $(top_builddir)/simgear/misc/libsgmisc.a \ - $(top_builddir)/simgear/xml/libsgxml.a \ - $(top_builddir)/simgear/debug/libsgdebug.a + $(top_builddir)/simgear/misc/libsgmisc.la \ + $(top_builddir)/simgear/xml/libsgxml.la \ + $(top_builddir)/simgear/debug/libsgdebug.la \ + $(top_builddir)/simgear/structure/libsgstructure.la \ + $(top_builddir)/simgear/timing/libsgtiming.la \ + -lz INCLUDES = -I$(top_srcdir) diff -urN aaa/SimGear-0.3.4/simgear/props/Makefile.am SimGear-0.3.4/simgear/props/Makefile.am --- aaa/SimGear-0.3.4/simgear/props/Makefile.am 2003-09-30 17:36:51.000000000 +0200 +++ SimGear-0.3.4/simgear/props/Makefile.am 2003-11-10 23:16:49.000000000 +0100 @@ -1,13 +1,13 @@ includedir = @includedir@/props -lib_LIBRARIES = libsgprops.a +lib_LTLIBRARIES = libsgprops.la include_HEADERS = \ condition.hxx \ props.hxx \ props_io.hxx -libsgprops_a_SOURCES = \ +libsgprops_la_SOURCES = \ condition.cxx \ props.cxx \ props_io.cxx @@ -16,10 +16,12 @@ props_test_SOURCES = props_test.cxx props_test_LDADD = \ - $(top_builddir)/simgear/props/libsgprops.a \ - $(top_builddir)/simgear/xml/libsgxml.a \ - $(top_builddir)/simgear/misc/libsgmisc.a \ - $(top_builddir)/simgear/debug/libsgdebug.a \ - $(top_builddir)/simgear/structure/libsgstructure.a + $(top_builddir)/simgear/props/libsgprops.la \ + $(top_builddir)/simgear/xml/libsgxml.la \ + $(top_builddir)/simgear/misc/libsgmisc.la \ + $(top_builddir)/simgear/debug/libsgdebug.la \ + $(top_builddir)/simgear/structure/libsgstructure.la \ + $(top_builddir)/simgear/timing/libsgtiming.la \ + -lz INCLUDES = -I$(top_srcdir) diff -urN aaa/SimGear-0.3.4/simgear/route/Makefile.am SimGear-0.3.4/simgear/route/Makefile.am --- aaa/SimGear-0.3.4/simgear/route/Makefile.am 2003-08-29 19:36:29.000000000 +0200 +++ SimGear-0.3.4/simgear/route/Makefile.am 2003-11-10 22:28:48.000000000 +0100 @@ -1,10 +1,10 @@ includedir = @includedir@/route -lib_LIBRARIES = libsgroute.a +lib_LTLIBRARIES = libsgroute.la include_HEADERS = route.hxx waypoint.hxx -libsgroute_a_SOURCES = \ +libsgroute_la_SOURCES = \ route.cxx \ waypoint.cxx @@ -15,17 +15,19 @@ waytest_SOURCES = waytest.cxx waytest_LDADD = \ - $(top_builddir)/simgear/route/libsgroute.a \ - $(top_builddir)/simgear/math/libsgmath.a \ - $(top_builddir)/simgear/debug/libsgdebug.a \ - $(top_builddir)/simgear/misc/libsgmisc.a \ + $(top_builddir)/simgear/route/libsgroute.la \ + $(top_builddir)/simgear/math/libsgmath.la \ + $(top_builddir)/simgear/debug/libsgdebug.la \ + $(top_builddir)/simgear/misc/libsgmisc.la \ $(base_LIBS) \ -lz routetest_SOURCES = routetest.cxx routetest_LDADD = \ - $(top_builddir)/simgear/route/libsgroute.a \ - $(top_builddir)/simgear/math/libsgmath.a \ - $(top_builddir)/simgear/debug/libsgdebug.a \ + $(top_builddir)/simgear/route/libsgroute.la \ + $(top_builddir)/simgear/math/libsgmath.la \ + $(top_builddir)/simgear/debug/libsgdebug.la \ + $(top_builddir)/simgear/misc/libsgmisc.la \ + -lz $(base_LIBS) diff -urN aaa/SimGear-0.3.4/simgear/scene/material/Makefile.am SimGear-0.3.4/simgear/scene/material/Makefile.am --- aaa/SimGear-0.3.4/simgear/scene/material/Makefile.am 2003-05-16 15:21:20.000000000 +0200 +++ SimGear-0.3.4/simgear/scene/material/Makefile.am 2003-11-10 22:18:37.000000000 +0100 @@ -1,6 +1,6 @@ includedir = @includedir@/scene/material -lib_LIBRARIES = libsgmaterial.a +lib_LTLIBRARIES = libsgmaterial.la noinst_HEADERS = @@ -9,7 +9,7 @@ matlib.hxx \ matmodel.hxx -libsgmaterial_a_SOURCES = \ +libsgmaterial_la_SOURCES = \ mat.cxx \ matlib.cxx \ matmodel.cxx diff -urN aaa/SimGear-0.3.4/simgear/scene/model/Makefile.am SimGear-0.3.4/simgear/scene/model/Makefile.am --- aaa/SimGear-0.3.4/simgear/scene/model/Makefile.am 2003-05-16 15:21:20.000000000 +0200 +++ SimGear-0.3.4/simgear/scene/model/Makefile.am 2003-11-10 22:18:37.000000000 +0100 @@ -1,6 +1,6 @@ includedir = @includedir@/scene/model -lib_LIBRARIES = libsgmodel.a +lib_LTLIBRARIES = libsgmodel.la noinst_HEADERS = @@ -11,7 +11,7 @@ modellib.hxx \ placement.hxx -libsgmodel_a_SOURCES = \ +libsgmodel_la_SOURCES = \ animation.cxx \ location.cxx \ model.cxx \ diff -urN aaa/SimGear-0.3.4/simgear/scene/sky/clouds3d/Makefile.am SimGear-0.3.4/simgear/scene/sky/clouds3d/Makefile.am --- aaa/SimGear-0.3.4/simgear/scene/sky/clouds3d/Makefile.am 2003-08-11 23:17:02.000000000 +0200 +++ SimGear-0.3.4/simgear/scene/sky/clouds3d/Makefile.am 2003-11-10 22:51:38.000000000 +0100 @@ -9,13 +9,13 @@ EXTGL_SOURCE = endif -lib_LIBRARIES = libsgclouds3d.a +lib_LTLIBRARIES = libsgclouds3d.la include_HEADERS = \ SkySceneLoader.hpp \ SkyUtil.hpp -libsgclouds3d_a_SOURCES = \ +libsgclouds3d_la_SOURCES = \ $(EXTGL_SOURCE) \ vec3fv.cpp vec3fv.hpp vec3f.hpp vec4f.hpp vec2f.hpp \ mat16fv.cpp mat16fv.hpp \ diff -urN aaa/SimGear-0.3.4/simgear/scene/sky/Makefile.am SimGear-0.3.4/simgear/scene/sky/Makefile.am --- aaa/SimGear-0.3.4/simgear/scene/sky/Makefile.am 2003-08-04 19:45:34.000000000 +0200 +++ SimGear-0.3.4/simgear/scene/sky/Makefile.am 2003-11-10 22:18:37.000000000 +0100 @@ -2,7 +2,7 @@ SUBDIRS = clouds3d -lib_LIBRARIES = libsgsky.a +lib_LTLIBRARIES = libsgsky.la include_HEADERS = \ cloud.hxx \ @@ -13,7 +13,7 @@ sphere.hxx \ stars.hxx -libsgsky_a_SOURCES = \ +libsgsky_la_SOURCES = \ cloud.cxx \ dome.cxx \ moon.cxx \ diff -urN aaa/SimGear-0.3.4/simgear/scene/tgdb/Makefile.am SimGear-0.3.4/simgear/scene/tgdb/Makefile.am --- aaa/SimGear-0.3.4/simgear/scene/tgdb/Makefile.am 2003-05-29 17:09:01.000000000 +0200 +++ SimGear-0.3.4/simgear/scene/tgdb/Makefile.am 2003-11-10 22:18:37.000000000 +0100 @@ -1,6 +1,6 @@ includedir = @includedir@/scene/tgdb -lib_LIBRARIES = libsgtgdb.a +lib_LTLIBRARIES = libsgtgdb.la noinst_HEADERS = @@ -11,7 +11,7 @@ pt_lights.hxx \ userdata.hxx -libsgtgdb_a_SOURCES = \ +libsgtgdb_la_SOURCES = \ apt_signs.cxx \ leaf.cxx \ obj.cxx \ diff -urN aaa/SimGear-0.3.4/simgear/screen/Makefile.am SimGear-0.3.4/simgear/screen/Makefile.am --- aaa/SimGear-0.3.4/simgear/screen/Makefile.am 2003-08-29 19:36:30.000000000 +0200 +++ SimGear-0.3.4/simgear/screen/Makefile.am 2003-11-10 22:18:37.000000000 +0100 @@ -1,6 +1,6 @@ includedir = @includedir@/screen -lib_LIBRARIES = libsgscreen.a +lib_LTLIBRARIES = libsgscreen.la EXTRA_DIST = jpgfactory.cxx jpgfactory.hxx @@ -22,7 +22,7 @@ extensions.hxx \ tr.h -libsgscreen_a_SOURCES = \ +libsgscreen_la_SOURCES = \ texture.cxx \ GLBitmaps.cxx GLBitmaps.h \ $(IMAGE_SERVER_SRCS) \ diff -urN aaa/SimGear-0.3.4/simgear/serial/Makefile.am SimGear-0.3.4/simgear/serial/Makefile.am --- aaa/SimGear-0.3.4/simgear/serial/Makefile.am 2002-09-07 04:58:19.000000000 +0200 +++ SimGear-0.3.4/simgear/serial/Makefile.am 2003-11-10 22:18:38.000000000 +0100 @@ -1,17 +1,17 @@ includedir = @includedir@/serial -lib_LIBRARIES = libsgserial.a +lib_LTLIBRARIES = libsgserial.la include_HEADERS = serial.hxx -libsgserial_a_SOURCES = serial.cxx +libsgserial_la_SOURCES = serial.cxx noinst_PROGRAMS = testserial testserial_SOURCES = testserial.cxx testserial_LDADD = \ - $(top_builddir)/simgear/serial/libsgserial.a \ - $(top_builddir)/simgear/debug/libsgdebug.a + $(top_builddir)/simgear/serial/libsgserial.la \ + $(top_builddir)/simgear/debug/libsgdebug.la INCLUDES = -I$(top_srcdir) diff -urN aaa/SimGear-0.3.4/simgear/sound/Makefile.am SimGear-0.3.4/simgear/sound/Makefile.am --- aaa/SimGear-0.3.4/simgear/sound/Makefile.am 2003-05-09 19:29:07.000000000 +0200 +++ SimGear-0.3.4/simgear/sound/Makefile.am 2003-11-10 22:18:38.000000000 +0100 @@ -1,11 +1,11 @@ includedir = @includedir@/sound -lib_LIBRARIES = libsgsound.a +lib_LTLIBRARIES = libsgsound.la noinst_HEADERS = include_HEADERS = sound.hxx soundmgr.hxx -libsgsound_a_SOURCES = sound.cxx soundmgr.cxx +libsgsound_la_SOURCES = sound.cxx soundmgr.cxx INCLUDES = -I$(top_srcdir) diff -urN aaa/SimGear-0.3.4/simgear/structure/Makefile.am SimGear-0.3.4/simgear/structure/Makefile.am --- aaa/SimGear-0.3.4/simgear/structure/Makefile.am 2003-09-24 19:19:23.000000000 +0200 +++ SimGear-0.3.4/simgear/structure/Makefile.am 2003-11-10 22:51:14.000000000 +0100 @@ -1,6 +1,6 @@ includedir = @includedir@/structure -lib_LIBRARIES = libsgstructure.a +lib_LTLIBRARIES = libsgstructure.la include_HEADERS = \ callback.hxx \ @@ -9,7 +9,7 @@ event_mgr.hxx \ subsystem_mgr.hxx -libsgstructure_a_SOURCES = \ +libsgstructure_la_SOURCES = \ commands.cxx \ exception.cxx \ event_mgr.cxx\ diff -urN aaa/SimGear-0.3.4/simgear/threads/Makefile.am SimGear-0.3.4/simgear/threads/Makefile.am --- aaa/SimGear-0.3.4/simgear/threads/Makefile.am 2002-09-07 04:58:20.000000000 +0200 +++ SimGear-0.3.4/simgear/threads/Makefile.am 2003-11-10 22:18:38.000000000 +0100 @@ -1,13 +1,13 @@ includedir = @includedir@/threads -lib_LIBRARIES = libsgthreads.a +lib_LTLIBRARIES = libsgthreads.la include_HEADERS = \ SGGuard.hxx \ SGQueue.hxx \ SGThread.hxx -libsgthreads_a_SOURCES = \ +libsgthreads_la_SOURCES = \ SGThread.cxx INCLUDES = -I$(top_srcdir) diff -urN aaa/SimGear-0.3.4/simgear/timing/Makefile.am SimGear-0.3.4/simgear/timing/Makefile.am --- aaa/SimGear-0.3.4/simgear/timing/Makefile.am 2002-09-07 04:58:19.000000000 +0200 +++ SimGear-0.3.4/simgear/timing/Makefile.am 2003-11-10 22:18:38.000000000 +0100 @@ -1,6 +1,6 @@ includedir = @includedir@/timing -lib_LIBRARIES = libsgtiming.a +lib_LTLIBRARIES = libsgtiming.la include_HEADERS = \ geocoord.h \ @@ -9,7 +9,7 @@ timestamp.hxx \ timezone.h -libsgtiming_a_SOURCES = \ +libsgtiming_la_SOURCES = \ geocoord.cxx \ lowleveltime.cxx \ sg_time.cxx \ diff -urN aaa/SimGear-0.3.4/simgear/xgl/Makefile.am SimGear-0.3.4/simgear/xgl/Makefile.am --- aaa/SimGear-0.3.4/simgear/xgl/Makefile.am 2002-09-07 04:58:19.000000000 +0200 +++ SimGear-0.3.4/simgear/xgl/Makefile.am 2003-11-10 22:18:38.000000000 +0100 @@ -1,9 +1,9 @@ includedir = @includedir@/xgl -lib_LIBRARIES = libsgxgl.a +lib_LTLIBRARIES = libsgxgl.la include_HEADERS = xgl.h -libsgxgl_a_SOURCES = xgl.c xglUtils.c +libsgxgl_la_SOURCES = xgl.c xglUtils.c INCLUDES = -I$(top_srcdir) diff -urN aaa/SimGear-0.3.4/simgear/xml/Makefile.am SimGear-0.3.4/simgear/xml/Makefile.am --- aaa/SimGear-0.3.4/simgear/xml/Makefile.am 2003-08-29 19:36:30.000000000 +0200 +++ SimGear-0.3.4/simgear/xml/Makefile.am 2003-11-10 22:29:29.000000000 +0100 @@ -1,6 +1,6 @@ includedir = @includedir@/xml -lib_LIBRARIES = libsgxml.a +lib_LTLIBRARIES = libsgxml.la include_HEADERS = \ easyxml.hxx @@ -8,7 +8,7 @@ noinst_HEADERS = \ xmltok_impl.c xmltok_ns.c -libsgxml_a_SOURCES = \ +libsgxml_la_SOURCES = \ asciitab.h \ easyxml.cxx \ hashtable.h hashtable.c \