X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=simgear%2Fio%2FMakefile.am;h=d61a6165beeabf0de489fbce562967e4a2616d89;hb=1b2915aa2a73317e9c53af968bad8c3c53f33bbb;hp=05b80db23f5619893179ceada3220054cbce8e23;hpb=3dcffc7df821bd8dfc4f4324b14f2af86305960f;p=simgear.git diff --git a/simgear/io/Makefile.am b/simgear/io/Makefile.am index 05b80db2..d61a6165 100644 --- a/simgear/io/Makefile.am +++ b/simgear/io/Makefile.am @@ -9,7 +9,8 @@ include_HEADERS = \ sg_file.hxx \ sg_serial.hxx \ sg_socket.hxx \ - sg_socket_udp.hxx + sg_socket_udp.hxx \ + raw_socket.hxx libsgio_a_SOURCES = \ iochannel.cxx \ @@ -18,7 +19,8 @@ libsgio_a_SOURCES = \ sg_file.cxx \ sg_serial.cxx \ sg_socket.cxx \ - sg_socket_udp.cxx + sg_socket_udp.cxx \ + raw_socket.cxx INCLUDES = -I$(top_srcdir) @@ -26,52 +28,37 @@ noinst_PROGRAMS = decode_binobj socktest lowtest tcp_server tcp_client tcp_server_SOURCES = tcp_server.cxx -if HAVE_FRAMEWORK_PLIB -tcp_server_LDFLAGS = $(plib_FRAMEWORK) -else -tcp_server_PLIB_LIBS = -lplibnet -lplibul -endif - tcp_server_LDADD = \ libsgio.a \ + $(top_builddir)/simgear/structure/libsgstructure.a \ $(top_builddir)/simgear/debug/libsgdebug.a \ $(top_builddir)/simgear/bucket/libsgbucket.a \ $(top_builddir)/simgear/misc/libsgmisc.a \ - $(tcp_server_PLIB_LIBS) -lz \ + -lz \ $(network_LIBS) \ $(base_LIBS) tcp_client_SOURCES = tcp_client.cxx -if HAVE_FRAMEWORK_PLIB -tcp_client_LDFLAGS = $(plib_FRAMEWORK) -else -tcp_client_PLIB_LIBS = -lplibnet -lplibul -endif - tcp_client_LDADD = \ libsgio.a \ + $(top_builddir)/simgear/structure/libsgstructure.a \ $(top_builddir)/simgear/debug/libsgdebug.a \ $(top_builddir)/simgear/bucket/libsgbucket.a \ $(top_builddir)/simgear/misc/libsgmisc.a \ - $(tcp_client_PLIB_LIBS) -lz \ + -lz \ $(network_LIBS) \ $(base_LIBS) socktest_SOURCES = socktest.cxx -if HAVE_FRAMEWORK_PLIB -socktest_LDFLAGS = $(plib_FRAMEWORK) -else -socktest_PLIB_LIBS = -lplibnet -lplibul -endif - socktest_LDADD = \ libsgio.a \ + $(top_builddir)/simgear/structure/libsgstructure.a \ $(top_builddir)/simgear/debug/libsgdebug.a \ $(top_builddir)/simgear/bucket/libsgbucket.a \ $(top_builddir)/simgear/misc/libsgmisc.a \ - $(socktest_PLIB_LIBS) -lz \ + -lz \ $(network_LIBS) \ $(base_LIBS) @@ -79,6 +66,7 @@ lowtest_SOURCES = lowtest.cxx lowtest_LDADD = \ libsgio.a \ + $(top_builddir)/simgear/structure/libsgstructure.a \ $(top_builddir)/simgear/debug/libsgdebug.a \ $(top_builddir)/simgear/bucket/libsgbucket.a \ $(top_builddir)/simgear/misc/libsgmisc.a \