Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/proxy/src/lib/network/Makefile.am @ 9600

Last change on this file since 9600 was 9537, checked in by patrick, 18 years ago

found the bug. there is need for another control center for proxies to signal new clients and leavings. This is a central part of the proxy synchronization process

File size: 2.7 KB
RevLine 
[5554]1MAINSRCDIR=../..
2include $(MAINSRCDIR)/defs/include_paths.am
3
4noinst_LIBRARIES = libORXnet.a
5
6libORXnet_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 \
[9537]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 \
45                      \
46                      ip.cc
[5554]47
48
49
[6139]50
[9406]51noinst_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                \
[9537]79                proxy/network_settings.h \
80                proxy/proxy_control.h \
[9406]81                \
[9494]82                monitor/connection_monitor.h \
83                monitor/network_monitor.h \
84                monitor/network_node.h \
85                monitor/network_stats_widget.h \
[9406]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
Note: See TracBrowser for help on using the repository browser.