| 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 \ |
|---|
| 8 | shared_network_data.cc \ |
|---|
| 9 | network_socket.cc \ |
|---|
| 10 | network_stream.cc \ |
|---|
| 11 | data_stream.cc \ |
|---|
| 12 | network_protocol.cc \ |
|---|
| 13 | server_socket.cc \ |
|---|
| 14 | tcp_server_socket.cc \ |
|---|
| 15 | tcp_socket.cc \ |
|---|
| 16 | udp_server_socket.cc \ |
|---|
| 17 | udp_socket.cc \ |
|---|
| 18 | handshake.cc \ |
|---|
| 19 | network_game_manager.cc \ |
|---|
| 20 | converter.cc \ |
|---|
| 21 | peer_info.cc \ |
|---|
| 22 | message_manager.cc \ |
|---|
| 23 | network_log.cc \ |
|---|
| 24 | zip.cc \ |
|---|
| 25 | player_stats.cc \ |
|---|
| 26 | udp_broadcast.cc \ |
|---|
| 27 | \ |
|---|
| 28 | proxy/network_settings.cc \ |
|---|
| 29 | proxy/proxy_control.cc \ |
|---|
| 30 | \ |
|---|
| 31 | monitor/connection_monitor.cc \ |
|---|
| 32 | monitor/network_monitor.cc \ |
|---|
| 33 | monitor/network_node.cc \ |
|---|
| 34 | monitor/network_stats_widget.cc \ |
|---|
| 35 | \ |
|---|
| 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 \ |
|---|
| 43 | synchronizeable_var/synchronizeable_uint.cc \ |
|---|
| 44 | synchronizeable_var/synchronizeable_ip.cc \ |
|---|
| 45 | \ |
|---|
| 46 | ip.cc |
|---|
| 47 | |
|---|
| 48 | |
|---|
| 49 | |
|---|
| 50 | |
|---|
| 51 | noinst_HEADERS = \ |
|---|
| 52 | netdefs.h \ |
|---|
| 53 | nettypes.h \ |
|---|
| 54 | netincl.h \ |
|---|
| 55 | \ |
|---|
| 56 | synchronizeable.h \ |
|---|
| 57 | network_manager.h \ |
|---|
| 58 | shared_network_data.h \ |
|---|
| 59 | network_socket.h \ |
|---|
| 60 | network_stream.h \ |
|---|
| 61 | data_stream.h \ |
|---|
| 62 | network_protocol.h \ |
|---|
| 63 | server_socket.h \ |
|---|
| 64 | tcp_server_socket.h \ |
|---|
| 65 | tcp_socket.h \ |
|---|
| 66 | udp_server_socket.h \ |
|---|
| 67 | udp_socket.h \ |
|---|
| 68 | handshake.h \ |
|---|
| 69 | network_game_manager.h \ |
|---|
| 70 | converter.h \ |
|---|
| 71 | peer_info.h \ |
|---|
| 72 | netdefs.h \ |
|---|
| 73 | message_manager.h \ |
|---|
| 74 | network_log.h \ |
|---|
| 75 | zip.h \ |
|---|
| 76 | player_stats.h \ |
|---|
| 77 | udp_broadcast.h \ |
|---|
| 78 | \ |
|---|
| 79 | proxy/network_settings.h \ |
|---|
| 80 | proxy/proxy_control.h \ |
|---|
| 81 | \ |
|---|
| 82 | monitor/connection_monitor.h \ |
|---|
| 83 | monitor/network_monitor.h \ |
|---|
| 84 | monitor/network_node.h \ |
|---|
| 85 | monitor/network_stats_widget.h \ |
|---|
| 86 | \ |
|---|
| 87 | synchronizeable_var/synchronizeable_var.h \ |
|---|
| 88 | synchronizeable_var/synchronizeable_vector.h \ |
|---|
| 89 | synchronizeable_var/synchronizeable_int.h \ |
|---|
| 90 | synchronizeable_var/synchronizeable_quaternion.h \ |
|---|
| 91 | synchronizeable_var/synchronizeable_string.h \ |
|---|
| 92 | synchronizeable_var/synchronizeable_float.h \ |
|---|
| 93 | synchronizeable_var/synchronizeable_bool.h \ |
|---|
| 94 | synchronizeable_var/synchronizeable_uint.h \ |
|---|
| 95 | synchronizeable_var/synchronizeable_ip.h \ |
|---|
| 96 | \ |
|---|
| 97 | ip.h |
|---|