X-Git-Url: http://developer.intra2net.com/git/?p=libt2n;a=blobdiff_plain;f=src%2FMakefile.am;h=204c59d3ee500385a4a0ab9ef7f394fdc51bd61c;hp=ec5b0f77ac7b04b248efaab672f26cc88d75107d;hb=ffbbf9abeb195a4017c1ede383cc9ab906aa4a0c;hpb=7087e18783f91d2b889e880462d1d1da24831c28 diff --git a/src/Makefile.am b/src/Makefile.am index ec5b0f7..204c59d 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -1,14 +1,19 @@ - # set the include path found by configure INCLUDES= $(all_includes) # the library search path. lib_LTLIBRARIES = libt2n.la -libt2n_la_LDFLAGS = -module -libt2n_la_SOURCES = server.cpp socket_server.cpp client.cpp connection.cpp \ - socket_handler.cpp socket_client.cpp command_server.cpp command_client.cpp \ - t2n_exception.cpp command.cpp container.cpp +libt2n_la_SOURCES = client.cpp client_wrapper.cpp command.cpp \ + command_client.cpp command_server.cpp connection.cpp container.cpp server.cpp \ + socket_client.cpp socket_handler.cpp socket_server.cpp socket_wrapper.cpp \ + t2n_exception.cpp + +# Note: If you specify a:b:c as the version in the next line, +# the library that is made has version (a-c).c.b. In this +# example, the version is 2.1.2. (3:2:1) +libt2n_la_LDFLAGS = -version-info 1:0:0 -include_HEADERS = server.hxx socket_server.hxx t2n_exception.hxx client.hxx \ - socket_client.hxx connection.hxx types.hxx socket_handler.hxx command.hxx container.hxx \ - command_client.hxx command_server.hxx +pkginclude_HEADERS = client.hxx client_wrapper.hxx command.hxx \ + command_client.hxx command_server.hxx connection.hxx container.hxx log.hxx server.hxx \ + socket_client.hxx socket_handler.hxx socket_server.hxx socket_wrapper.hxx \ + t2n_exception.hxx types.hxx