[5349] | 1 | MAINSRCDIR=.. |
---|
| 2 | include $(MAINSRCDIR)/defs/include_paths.am |
---|
| 3 | |
---|
[5463] | 4 | noinst_LIBRARIES = libORXlibs.a |
---|
[5349] | 5 | |
---|
[5674] | 6 | libORXlibs_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 \ |
---|
| 17 | tinyxml/libtinyxml.a \ |
---|
| 18 | shell/libORXshell.a |
---|
[5349] | 19 | |
---|
[5673] | 20 | #libORXlibs_a_LIBDADD = gui/gtk_gui/libORXgui.a \ |
---|
[5463] | 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 \ |
---|
[5822] | 29 | network/libORXnet.a \ |
---|
[5463] | 30 | graphics/spatial_separation/libORXquadtree.a \ |
---|
| 31 | tinyxml/libtinyxml.a \ |
---|
| 32 | shell/libORXshell.a \ |
---|
| 33 | $(GTK2_LIBS) $(GTHREAD_LIBS) $(CURL_LIBS) |
---|
[5349] | 34 | |
---|
[5463] | 35 | libORXlibs_a_SOURCES = coord/p_node.cc \ |
---|
[5349] | 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 \ |
---|
[5536] | 43 | util/multi_type.cc \ |
---|
[5634] | 44 | util/executor/executor.cc \ |
---|
[5349] | 45 | math/vector.cc \ |
---|
[5673] | 46 | math/matrix.cc \ |
---|
[5349] | 47 | math/curve.cc |
---|
| 48 | |
---|
| 49 | noinst_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 \ |
---|
[5389] | 59 | util/t_stack.h \ |
---|
[5349] | 60 | util/color.h \ |
---|
| 61 | util/helper_functions.h \ |
---|
[5536] | 62 | util/multi_type.h \ |
---|
[5634] | 63 | util/executor/executor.h \ |
---|
[5691] | 64 | util/executor/executor_specials.h \ |
---|
| 65 | util/executor/functor_list.h \ |
---|
[5673] | 66 | math/matrix.h \ |
---|
[5349] | 67 | math/vector.h \ |
---|
| 68 | math/curve.h |
---|
| 69 | |
---|
[3493] | 70 | SUBDIRS = graphics \ |
---|
[4569] | 71 | sound \ |
---|
| 72 | event \ |
---|
| 73 | physics \ |
---|
| 74 | particles \ |
---|
| 75 | collision_detection \ |
---|
[5822] | 76 | network \ |
---|
[4569] | 77 | tinyxml \ |
---|
[5349] | 78 | shell \ |
---|
| 79 | gui \ |
---|
| 80 | . |
---|
| 81 | |
---|