| 1 | MAINSRCDIR=.. | 
|---|
| 2 | include $(MAINSRCDIR)/defs/include_paths.am | 
|---|
| 3 |  | 
|---|
| 4 | noinst_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 |                             network/libORXnet.a \ | 
|---|
| 16 |                             graphics/spatial_separation/libORXquadtree.a \ | 
|---|
| 17 |                             parser/tinyxml/libtinyxml.a \ | 
|---|
| 18 |                             parser/ini_parser/libIniParser.a \ | 
|---|
| 19 |                             shell/libORXshell.a | 
|---|
| 20 |  | 
|---|
| 21 | #libORXlibs_a_LIBDADD =     gui/gtk_gui/libORXgui.a \ | 
|---|
| 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 \ | 
|---|
| 30 |                             network/libORXnet.a \ | 
|---|
| 31 |                             graphics/spatial_separation/libORXquadtree.a \ | 
|---|
| 32 |                             shell/libORXshell.a \ | 
|---|
| 33 |                             $(GTK2_LIBS) $(GTHREAD_LIBS) $(CURL_LIBS) | 
|---|
| 34 |  | 
|---|
| 35 | libORXlibs_a_SOURCES =  coord/p_node.cc \ | 
|---|
| 36 |                         lang/base_object.cc \ | 
|---|
| 37 |                         lang/class_list.cc \ | 
|---|
| 38 |                         data/data_tank.cc \ | 
|---|
| 39 |                         util/substring.cc \ | 
|---|
| 40 |                         util/color.cc \ | 
|---|
| 41 |                         util/helper_functions.cc \ | 
|---|
| 42 |                         util/multi_type.cc \ | 
|---|
| 43 |                         util/executor/executor.cc \ | 
|---|
| 44 |                         math/vector.cc \ | 
|---|
| 45 |                         math/matrix.cc \ | 
|---|
| 46 |                         math/curve.cc | 
|---|
| 47 |  | 
|---|
| 48 | noinst_HEADERS =        coord/p_node.h \ | 
|---|
| 49 |                         lang/base_object.h \ | 
|---|
| 50 |                         data/data_tank.h \ | 
|---|
| 51 |                         graphics/render2D/element_2d.h \ | 
|---|
| 52 |                         graphics/render2D/render_2d.h \ | 
|---|
| 53 |                         lang/class_list.h \ | 
|---|
| 54 |                         util/substring.h \ | 
|---|
| 55 |                         util/array.h \ | 
|---|
| 56 |                         util/list.h \ | 
|---|
| 57 |                         util/t_stack.h \ | 
|---|
| 58 |                         util/color.h \ | 
|---|
| 59 |                         util/helper_functions.h \ | 
|---|
| 60 |                         util/multi_type.h \ | 
|---|
| 61 |                         util/executor/executor.h \ | 
|---|
| 62 |                         util/executor/executor_specials.h \ | 
|---|
| 63 |                         util/executor/functor_list.h \ | 
|---|
| 64 |                         math/matrix.h \ | 
|---|
| 65 |                         math/vector.h \ | 
|---|
| 66 |                         math/curve.h | 
|---|
| 67 |  | 
|---|
| 68 | SUBDIRS = graphics \ | 
|---|
| 69 |           sound \ | 
|---|
| 70 |           event \ | 
|---|
| 71 |           physics \ | 
|---|
| 72 |           particles \ | 
|---|
| 73 |           collision_detection \ | 
|---|
| 74 |                 network \ | 
|---|
| 75 |           parser \ | 
|---|
| 76 |           shell \ | 
|---|
| 77 |           gui \ | 
|---|
| 78 |           . | 
|---|
| 79 |  | 
|---|