| [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 \ |
|---|
| [9252] | 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 | \ |
|---|
| [9276] | 28 | monitor/connection_monitor.cc \ |
|---|
| 29 | monitor/network_monitor.cc \ |
|---|
| 30 | monitor/network_node.cc \ |
|---|
| 31 | \ |
|---|
| [7954] | 32 | synchronizeable_var/synchronizeable_var.cc \ |
|---|
| 33 | synchronizeable_var/synchronizeable_vector.cc \ |
|---|
| 34 | synchronizeable_var/synchronizeable_int.cc \ |
|---|
| 35 | synchronizeable_var/synchronizeable_quaternion.cc \ |
|---|
| 36 | synchronizeable_var/synchronizeable_string.cc \ |
|---|
| 37 | synchronizeable_var/synchronizeable_float.cc \ |
|---|
| 38 | synchronizeable_var/synchronizeable_bool.cc \ |
|---|
| [9293] | 39 | synchronizeable_var/synchronizeable_uint.cc \ |
|---|
| 40 | synchronizeable_var/synchronizeable_ip.cc |
|---|
| [5554] | 41 | |
|---|
| 42 | |
|---|
| 43 | |
|---|
| [6139] | 44 | |
|---|
| [5554] | 45 | noinst_HEADERS = synchronizeable.h \ |
|---|
| 46 | network_manager.h \ |
|---|
| [6695] | 47 | shared_network_data.h \ |
|---|
| [5554] | 48 | network_socket.h \ |
|---|
| [5566] | 49 | network_stream.h \ |
|---|
| [5599] | 50 | data_stream.h \ |
|---|
| [5996] | 51 | network_protocol.h \ |
|---|
| [6139] | 52 | server_socket.h \ |
|---|
| [7954] | 53 | tcp_server_socket.h \ |
|---|
| 54 | tcp_socket.h \ |
|---|
| 55 | udp_server_socket.h \ |
|---|
| 56 | udp_socket.h \ |
|---|
| [6139] | 57 | handshake.h \ |
|---|
| 58 | network_game_manager.h \ |
|---|
| [7026] | 59 | converter.h \ |
|---|
| [9252] | 60 | peer_info.h \ |
|---|
| [7954] | 61 | netdefs.h \ |
|---|
| 62 | message_manager.h \ |
|---|
| 63 | network_log.h \ |
|---|
| 64 | zip.h \ |
|---|
| [8068] | 65 | player_stats.h \ |
|---|
| [8623] | 66 | udp_broadcast.h \ |
|---|
| [7954] | 67 | \ |
|---|
| [9276] | 68 | monitor/connection_monitor.h \ |
|---|
| 69 | monitor/network_monitor.h \ |
|---|
| 70 | monitor/network_node.h \ |
|---|
| 71 | \ |
|---|
| [7954] | 72 | synchronizeable_var/synchronizeable_var.h \ |
|---|
| 73 | synchronizeable_var/synchronizeable_vector.h \ |
|---|
| 74 | synchronizeable_var/synchronizeable_int.h \ |
|---|
| 75 | synchronizeable_var/synchronizeable_quaternion.h \ |
|---|
| 76 | synchronizeable_var/synchronizeable_string.h \ |
|---|
| 77 | synchronizeable_var/synchronizeable_float.h \ |
|---|
| 78 | synchronizeable_var/synchronizeable_bool.h \ |
|---|
| [9293] | 79 | synchronizeable_var/synchronizeable_uint.h \ |
|---|
| 80 | synchronizeable_var/synchronizeable_ip.h |
|---|
| [5554] | 81 | |
|---|
| [6139] | 82 | |
|---|