| 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 | monitor/connection_monitor.cc \ |
|---|
| 29 | monitor/network_monitor.cc \ |
|---|
| 30 | monitor/network_node.cc \ |
|---|
| 31 | \ |
|---|
| 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 \ |
|---|
| 39 | synchronizeable_var/synchronizeable_uint.cc \ |
|---|
| 40 | synchronizeable_var/synchronizeable_ip.cc |
|---|
| 41 | |
|---|
| 42 | |
|---|
| 43 | |
|---|
| 44 | |
|---|
| 45 | noinst_HEADERS = synchronizeable.h \ |
|---|
| 46 | network_manager.h \ |
|---|
| 47 | shared_network_data.h \ |
|---|
| 48 | network_socket.h \ |
|---|
| 49 | network_stream.h \ |
|---|
| 50 | data_stream.h \ |
|---|
| 51 | network_protocol.h \ |
|---|
| 52 | server_socket.h \ |
|---|
| 53 | tcp_server_socket.h \ |
|---|
| 54 | tcp_socket.h \ |
|---|
| 55 | udp_server_socket.h \ |
|---|
| 56 | udp_socket.h \ |
|---|
| 57 | handshake.h \ |
|---|
| 58 | network_game_manager.h \ |
|---|
| 59 | converter.h \ |
|---|
| 60 | peer_info.h \ |
|---|
| 61 | netdefs.h \ |
|---|
| 62 | message_manager.h \ |
|---|
| 63 | network_log.h \ |
|---|
| 64 | zip.h \ |
|---|
| 65 | player_stats.h \ |
|---|
| 66 | udp_broadcast.h \ |
|---|
| 67 | \ |
|---|
| 68 | monitor/connection_monitor.h \ |
|---|
| 69 | monitor/network_monitor.h \ |
|---|
| 70 | monitor/network_node.h \ |
|---|
| 71 | \ |
|---|
| 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 \ |
|---|
| 79 | synchronizeable_var/synchronizeable_uint.h \ |
|---|
| 80 | synchronizeable_var/synchronizeable_ip.h |
|---|
| 81 | |
|---|
| 82 | |
|---|