Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

orxonox/trunk: added missing files to Makefiles.am's

File size: 3.6 KB
RevLine 
[5349]1MAINSRCDIR=..
2include $(MAINSRCDIR)/defs/include_paths.am
3
[5463]4noinst_LIBRARIES = libORXlibs.a
[5349]5
[5674]6libORXlibs_a_DEPENDENCIES = gui/gtk_gui/libORXgui.a \
[5463]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 \
[5822]15                            network/libORXnet.a \
[5463]16                            graphics/spatial_separation/libORXquadtree.a \
[5944]17                            parser/tinyxml/libtinyxml.a \
18                            parser/ini_parser/libIniParser.a \
[5463]19                            shell/libORXshell.a
[5349]20
[5673]21#libORXlibs_a_LIBDADD =     gui/gtk_gui/libORXgui.a \
[5463]22                            gui/gl_gui/libORXglgui.a \
23                            graphics/importer/libORXimporter.a \
24                            graphics/libORXgraphics.a \
25                            sound/libORXsound.a \
26                            event/libORXevent.a \
27                            physics/libORXphysics.a \
28                            particles/libORXparticles.a \
29                            collision_detection/libORXcd.a \
[5822]30                            network/libORXnet.a \
[5463]31                            graphics/spatial_separation/libORXquadtree.a \
32                            shell/libORXshell.a \
33                            $(GTK2_LIBS) $(GTHREAD_LIBS) $(CURL_LIBS)
[5349]34
[5463]35libORXlibs_a_SOURCES =  coord/p_node.cc \
[5349]36                        lang/base_object.cc \
37                        lang/class_list.cc \
[6424]38                        data/data_tank.cc \
[5349]39                        util/substring.cc \
40                        util/color.cc \
41                        util/helper_functions.cc \
[5536]42                        util/multi_type.cc \
[5634]43                        util/executor/executor.cc \
[5349]44                        math/vector.cc \
[6616]45                        math/quaternion.cc \
[6615]46                        math/vector2D.cc \
[5673]47                        math/matrix.cc \
[6617]48                        math/curve.cc \
49                        math/line.cc \
50                        math/plane.cc \
51                        math/rotation_OBSOLETE.cc
[5349]52
53noinst_HEADERS =        coord/p_node.h \
54                        lang/base_object.h \
[6424]55                        data/data_tank.h \
[5349]56                        graphics/render2D/element_2d.h \
57                        graphics/render2D/render_2d.h \
58                        lang/class_list.h \
59                        util/substring.h \
60                        util/array.h \
61                        util/list.h \
[5389]62                        util/t_stack.h \
[5349]63                        util/color.h \
64                        util/helper_functions.h \
[5536]65                        util/multi_type.h \
[5634]66                        util/executor/executor.h \
[5691]67                        util/executor/executor_specials.h \
68                        util/executor/functor_list.h \
[7028]69                        util/count_pointer.h \
[6615]70                        math/vector.h \
[6616]71                        math/quaternion.h \
[6615]72                        math/vector2D.h \
[5673]73                        math/matrix.h \
[6617]74                        math/curve.h \
75                        math/line.h \
76                        math/plane.h \
77                        math/rotation_OBSOLETE.h
[5349]78
[6617]79
[3493]80SUBDIRS = graphics \
[4569]81          sound \
82          event \
83          physics \
84          particles \
85          collision_detection \
[6424]86                network \
[5944]87          parser \
[5349]88          shell \
89          gui \
90          .
91
Note: See TracBrowser for help on using the repository browser.