[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 \ |
---|
[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] | 35 | libORXlibs_a_SOURCES = coord/p_node.cc \ |
---|
[5349] | 36 | lang/base_object.cc \ |
---|
| 37 | lang/class_list.cc \ |
---|
| 38 | util/substring.cc \ |
---|
| 39 | util/color.cc \ |
---|
| 40 | util/helper_functions.cc \ |
---|
[5536] | 41 | util/multi_type.cc \ |
---|
[5634] | 42 | util/executor/executor.cc \ |
---|
[5349] | 43 | math/vector.cc \ |
---|
[5673] | 44 | math/matrix.cc \ |
---|
[5349] | 45 | math/curve.cc |
---|
| 46 | |
---|
| 47 | noinst_HEADERS = coord/p_node.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/substring.h \ |
---|
| 53 | util/array.h \ |
---|
| 54 | util/list.h \ |
---|
[5389] | 55 | util/t_stack.h \ |
---|
[5349] | 56 | util/color.h \ |
---|
| 57 | util/helper_functions.h \ |
---|
[5536] | 58 | util/multi_type.h \ |
---|
[5634] | 59 | util/executor/executor.h \ |
---|
[5691] | 60 | util/executor/executor_specials.h \ |
---|
| 61 | util/executor/functor_list.h \ |
---|
[5673] | 62 | math/matrix.h \ |
---|
[5349] | 63 | math/vector.h \ |
---|
| 64 | math/curve.h |
---|
| 65 | |
---|
[3493] | 66 | SUBDIRS = graphics \ |
---|
[4569] | 67 | sound \ |
---|
| 68 | event \ |
---|
| 69 | physics \ |
---|
| 70 | particles \ |
---|
| 71 | collision_detection \ |
---|
[5822] | 72 | network \ |
---|
[5944] | 73 | parser \ |
---|
[5349] | 74 | shell \ |
---|
| 75 | gui \ |
---|
| 76 | . |
---|
| 77 | |
---|