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 | synchronizeable_var/synchronizeable_classid.cc \ |
---|
46 | synchronizeable_var/synchronizeable_classid_list.cc \ |
---|
47 | \ |
---|
48 | ip.cc |
---|
49 | |
---|
50 | |
---|
51 | |
---|
52 | |
---|
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 | \ |
---|
81 | proxy/network_settings.h \ |
---|
82 | proxy/proxy_control.h \ |
---|
83 | \ |
---|
84 | monitor/connection_monitor.h \ |
---|
85 | monitor/network_monitor.h \ |
---|
86 | monitor/network_node.h \ |
---|
87 | monitor/network_stats_widget.h \ |
---|
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 \ |
---|
98 | synchronizeable_var/synchronizeable_classid.h \ |
---|
99 | synchronizeable_var/synchronizeable_classid_list.h \ |
---|
100 | \ |
---|
101 | ip.h |
---|