Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/trunk/src/lib/Makefile.am @ 5822

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

orxonox/trunk: merged branches/network to the trunk
merged with command:
svn merge -r 5505:HEAD branches/network trunk

conflicts resolved in favor of the trunk (as always :))
also fixed a typo in the #include "SDL_tread.h"

File size: 3.2 KB
Line 
1MAINSRCDIR=..
2include $(MAINSRCDIR)/defs/include_paths.am
3
4noinst_LIBRARIES = libORXlibs.a
5
6libORXlibs_a_DEPENDENCIES = gui/gtk_gui/libORXgui.a \
7                            gui/gl_gui/libORXglgui.a \
8                            graphics/importer/libORXimporter.a \
9                            graphics/libORXgraphics.a \
10                            sound/libORXsound.a \
11                            event/libORXevent.a \
12                            physics/libORXphysics.a \
13                            particles/libORXparticles.a \
14                            collision_detection/libORXcd.a \
15                            network/libORXnet.a \
16                            graphics/spatial_separation/libORXquadtree.a \
17                            tinyxml/libtinyxml.a \
18                            shell/libORXshell.a
19
20#libORXlibs_a_LIBDADD =     gui/gtk_gui/libORXgui.a \
21                            gui/gl_gui/libORXglgui.a \
22                            graphics/importer/libORXimporter.a \
23                            graphics/libORXgraphics.a \
24                            sound/libORXsound.a \
25                            event/libORXevent.a \
26                            physics/libORXphysics.a \
27                            particles/libORXparticles.a \
28                            collision_detection/libORXcd.a \
29                            network/libORXnet.a \
30                            graphics/spatial_separation/libORXquadtree.a \
31                            tinyxml/libtinyxml.a \
32                            shell/libORXshell.a \
33                            $(GTK2_LIBS) $(GTHREAD_LIBS) $(CURL_LIBS)
34
35libORXlibs_a_SOURCES =  coord/p_node.cc \
36                        coord/null_parent.cc \
37                        lang/base_object.cc \
38                        lang/class_list.cc \
39                        util/ini_parser.cc \
40                        util/substring.cc \
41                        util/color.cc \
42                        util/helper_functions.cc \
43                        util/multi_type.cc \
44                        util/executor/executor.cc \
45                        math/vector.cc \
46                        math/matrix.cc \
47                        math/curve.cc
48
49noinst_HEADERS =        coord/p_node.h \
50                        coord/null_parent.h \
51                        lang/base_object.h \
52                        graphics/render2D/element_2d.h \
53                        graphics/render2D/render_2d.h \
54                        lang/class_list.h \
55                        util/ini_parser.h \
56                        util/substring.h \
57                        util/array.h \
58                        util/list.h \
59                        util/t_stack.h \
60                        util/color.h \
61                        util/helper_functions.h \
62                        util/multi_type.h \
63                        util/executor/executor.h \
64                        util/executor/executor_specials.h \
65                        util/executor/functor_list.h \
66                        math/matrix.h \
67                        math/vector.h \
68                        math/curve.h
69
70SUBDIRS = graphics \
71          sound \
72          event \
73          physics \
74          particles \
75          collision_detection \
76          network \
77          tinyxml \
78          shell \
79          gui \
80          .
81
Note: See TracBrowser for help on using the repository browser.