[5554] | 1 | MAINSRCDIR=../.. |
---|
| 2 | include $(MAINSRCDIR)/defs/include_paths.am |
---|
| 3 | |
---|
| 4 | noinst_LIBRARIES = libORXnet.a |
---|
| 5 | |
---|
| 6 | libORXnet_a_SOURCES = synchronizeable.cc \ |
---|
| 7 | network_manager.cc \ |
---|
[6695] | 8 | shared_network_data.cc \ |
---|
[5554] | 9 | network_socket.cc \ |
---|
[5566] | 10 | network_stream.cc \ |
---|
[5599] | 11 | data_stream.cc \ |
---|
[5996] | 12 | network_protocol.cc \ |
---|
[6139] | 13 | server_socket.cc \ |
---|
[7954] | 14 | tcp_server_socket.cc \ |
---|
| 15 | tcp_socket.cc \ |
---|
| 16 | udp_server_socket.cc \ |
---|
| 17 | udp_socket.cc \ |
---|
[6139] | 18 | handshake.cc \ |
---|
| 19 | network_game_manager.cc \ |
---|
[7954] | 20 | converter.cc \ |
---|
[9406] | 21 | peer_info.cc \ |
---|
[7954] | 22 | message_manager.cc \ |
---|
| 23 | network_log.cc \ |
---|
| 24 | zip.cc \ |
---|
[8068] | 25 | player_stats.cc \ |
---|
[8623] | 26 | udp_broadcast.cc \ |
---|
[7954] | 27 | \ |
---|
[9406] | 28 | proxy/network_settings.cc \ |
---|
[9656] | 29 | proxy/proxy_control.cc \ |
---|
[9406] | 30 | \ |
---|
[9494] | 31 | monitor/connection_monitor.cc \ |
---|
[9406] | 32 | monitor/network_monitor.cc \ |
---|
| 33 | monitor/network_node.cc \ |
---|
[9494] | 34 | monitor/network_stats_widget.cc \ |
---|
[9406] | 35 | \ |
---|
[7954] | 36 | synchronizeable_var/synchronizeable_var.cc \ |
---|
| 37 | synchronizeable_var/synchronizeable_vector.cc \ |
---|
| 38 | synchronizeable_var/synchronizeable_int.cc \ |
---|
| 39 | synchronizeable_var/synchronizeable_quaternion.cc \ |
---|
| 40 | synchronizeable_var/synchronizeable_string.cc \ |
---|
| 41 | synchronizeable_var/synchronizeable_float.cc \ |
---|
| 42 | synchronizeable_var/synchronizeable_bool.cc \ |
---|
[9406] | 43 | synchronizeable_var/synchronizeable_uint.cc \ |
---|
| 44 | synchronizeable_var/synchronizeable_ip.cc \ |
---|
[10114] | 45 | synchronizeable_var/synchronizeable_classid.cc \ |
---|
| 46 | synchronizeable_var/synchronizeable_classid_list.cc \ |
---|
[9406] | 47 | \ |
---|
| 48 | ip.cc |
---|
[5554] | 49 | |
---|
| 50 | |
---|
| 51 | |
---|
[6139] | 52 | |
---|
[9406] | 53 | noinst_HEADERS = \ |
---|
| 54 | netdefs.h \ |
---|
| 55 | nettypes.h \ |
---|
| 56 | netincl.h \ |
---|
| 57 | \ |
---|
| 58 | synchronizeable.h \ |
---|
| 59 | network_manager.h \ |
---|
| 60 | shared_network_data.h \ |
---|
| 61 | network_socket.h \ |
---|
| 62 | network_stream.h \ |
---|
| 63 | data_stream.h \ |
---|
| 64 | network_protocol.h \ |
---|
| 65 | server_socket.h \ |
---|
| 66 | tcp_server_socket.h \ |
---|
| 67 | tcp_socket.h \ |
---|
| 68 | udp_server_socket.h \ |
---|
| 69 | udp_socket.h \ |
---|
| 70 | handshake.h \ |
---|
| 71 | network_game_manager.h \ |
---|
| 72 | converter.h \ |
---|
| 73 | peer_info.h \ |
---|
| 74 | netdefs.h \ |
---|
| 75 | message_manager.h \ |
---|
| 76 | network_log.h \ |
---|
| 77 | zip.h \ |
---|
| 78 | player_stats.h \ |
---|
| 79 | udp_broadcast.h \ |
---|
| 80 | \ |
---|
[9656] | 81 | proxy/network_settings.h \ |
---|
| 82 | proxy/proxy_control.h \ |
---|
[9406] | 83 | \ |
---|
[9494] | 84 | monitor/connection_monitor.h \ |
---|
| 85 | monitor/network_monitor.h \ |
---|
| 86 | monitor/network_node.h \ |
---|
| 87 | monitor/network_stats_widget.h \ |
---|
[9406] | 88 | \ |
---|
| 89 | synchronizeable_var/synchronizeable_var.h \ |
---|
| 90 | synchronizeable_var/synchronizeable_vector.h \ |
---|
| 91 | synchronizeable_var/synchronizeable_int.h \ |
---|
| 92 | synchronizeable_var/synchronizeable_quaternion.h \ |
---|
| 93 | synchronizeable_var/synchronizeable_string.h \ |
---|
| 94 | synchronizeable_var/synchronizeable_float.h \ |
---|
| 95 | synchronizeable_var/synchronizeable_bool.h \ |
---|
| 96 | synchronizeable_var/synchronizeable_uint.h \ |
---|
| 97 | synchronizeable_var/synchronizeable_ip.h \ |
---|
[10114] | 98 | synchronizeable_var/synchronizeable_classid.h \ |
---|
| 99 | synchronizeable_var/synchronizeable_classid_list.h \ |
---|
[9406] | 100 | \ |
---|
| 101 | ip.h |
---|