Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

orxonox/trunk: Executor works just fine.
Changed: Paramerte* to MT_*, to make things more general

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