Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/trunk/src/subprojects/network/Makefile.am @ 6634

Last change on this file since 6634 was 6634, checked in by bensch, 18 years ago

orxonox/trunk: merged the network-branche back to the trunk

merged with command:
svn merge https://svn.orxonox.net/orxonox/branches/network . -r6500:HEAD
minor conflicts in texture and one Makefile resolved to the trunk

also made a small patch to texture, so it Modulates with GL_REPEAT

File size: 1.3 KB
Line 
1MAINSRCDIR=../..
2include $(MAINSRCDIR)/defs/include_paths.am
3
4bin_PROGRAMS = network
5
6
7network_CPPFLAGS = -DNO_SHELL -DNO_SHELL_COMMAND
8
9network_LDFLAGS = $(MWINDOWS)
10
11network_LDADD = $(MAINSRCDIR)/lib/network/libORXnet.a \
12                \
13                $(MAINSRCDIR)/lib/parser/tinyxml/libtinyxml.a
14
15network_SOURCES=  network_unit_test.cc \
16                  simple_sync.cc \
17                  read_sync.cc \
18                  write_sync.cc \
19                  \
20                  \
21                  $(MAINSRCDIR)/lib/lang/base_object.cc \
22                  $(MAINSRCDIR)/lib/lang/class_list.cc \
23                  $(MAINSRCDIR)/util/loading/load_param.cc \
24                  $(MAINSRCDIR)/util/loading/factory.cc \
25                  $(MAINSRCDIR)/lib/util/substring.cc \
26                  $(MAINSRCDIR)/util/loading/load_param_description.cc \
27                  $(MAINSRCDIR)/lib/util/helper_functions.cc \
28                  $(MAINSRCDIR)/lib/util/executor/executor.cc \
29                  $(MAINSRCDIR)/lib/util/multi_type.cc \
30                  \
31                  \
32                  $(MAINSRCDIR)/lib/coord/p_node.cc        \
33                  $(MAINSRCDIR)/world_entities/world_entity.cc
34                 
35
36
37
38noinst_HEADERS  =  network_unit_test.h \
39                   simple_sync.h \
40                   read_sync.h \
41                   write_sync.h
42
Note: See TracBrowser for help on using the repository browser.