]> git.mxchange.org Git - simgear.git/blobdiff - simgear/io/Makefile.am
Tweaks to endianess support.
[simgear.git] / simgear / io / Makefile.am
index 9e17a42447a715c26dbf6ba3576e43c8be52fb40..d6d53c4cfdcbeab46d883f88f628a28147836863 100644 (file)
@@ -4,14 +4,31 @@ lib_LIBRARIES = libsgio.a
 
 include_HEADERS = \
        iochannel.hxx \
+       lowlevel.hxx \
+       sg_binobj.hxx \
        sg_file.hxx \
        sg_serial.hxx \
        sg_socket.hxx
 
 libsgio_a_SOURCES = \
        iochannel.cxx \
+       lowlevel.cxx \
+       sg_binobj.cxx \
        sg_file.cxx \
        sg_serial.cxx \
        sg_socket.cxx 
 
 INCLUDES += -I$(top_srcdir)
+
+noinst_PROGRAMS = socktest lowtest
+
+socktest_SOURCES = socktest.cxx
+
+socktest_LDADD = \
+       $(top_builddir)/simgear/io/libsgio.a \
+       $(top_builddir)/simgear/debug/libsgdebug.a
+
+lowtest_SOURCES = lowtest.cxx
+
+lowtest_LDADD = \
+       $(top_builddir)/simgear/io/libsgio.a 
\ No newline at end of file