[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 \ |
---|
[6393] | 19 | shell/libORXshell.a \ |
---|
| 20 | argp/libargp.a |
---|
[5349] | 21 | |
---|
[5673] | 22 | #libORXlibs_a_LIBDADD = gui/gtk_gui/libORXgui.a \ |
---|
[6393] | 23 | # gui/gl_gui/libORXglgui.a \ |
---|
| 24 | # graphics/importer/libORXimporter.a \ |
---|
| 25 | # graphics/libORXgraphics.a \ |
---|
| 26 | # sound/libORXsound.a \ |
---|
| 27 | # event/libORXevent.a \ |
---|
| 28 | # physics/libORXphysics.a \ |
---|
| 29 | # particles/libORXparticles.a \ |
---|
| 30 | # collision_detection/libORXcd.a \ |
---|
| 31 | # network/libORXnet.a \ |
---|
| 32 | # graphics/spatial_separation/libORXquadtree.a \ |
---|
| 33 | # shell/libORXshell.a \ |
---|
| 34 | # $(GTK2_LIBS) $(GTHREAD_LIBS) $(CURL_LIBS) |
---|
[5349] | 35 | |
---|
[5463] | 36 | libORXlibs_a_SOURCES = coord/p_node.cc \ |
---|
[5349] | 37 | lang/base_object.cc \ |
---|
| 38 | lang/class_list.cc \ |
---|
| 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 \ |
---|
[6380] | 44 | util/preferences.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 | lang/base_object.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 \ |
---|
[5389] | 57 | util/t_stack.h \ |
---|
[5349] | 58 | util/color.h \ |
---|
| 59 | util/helper_functions.h \ |
---|
[5536] | 60 | util/multi_type.h \ |
---|
[5634] | 61 | util/executor/executor.h \ |
---|
[5691] | 62 | util/executor/executor_specials.h \ |
---|
| 63 | util/executor/functor_list.h \ |
---|
[6380] | 64 | util/preferences.h \ |
---|
[5673] | 65 | math/matrix.h \ |
---|
[5349] | 66 | math/vector.h \ |
---|
| 67 | math/curve.h |
---|
| 68 | |
---|
[3493] | 69 | SUBDIRS = graphics \ |
---|
[4569] | 70 | sound \ |
---|
| 71 | event \ |
---|
| 72 | physics \ |
---|
| 73 | particles \ |
---|
| 74 | collision_detection \ |
---|
[6383] | 75 | network \ |
---|
[5944] | 76 | parser \ |
---|
[5349] | 77 | shell \ |
---|
| 78 | gui \ |
---|
[6393] | 79 | argp \ |
---|
[5349] | 80 | . |
---|
| 81 | |
---|