Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

trunk: prepare for the new Executor

File size: 1.6 KB
Line 
1MAINSRCDIR=..
2include $(MAINSRCDIR)/defs/include_paths.am
3
4noinst_LIBRARIES = libORXlibs.a
5
6libORXlibs_a_SOURCES = \
7                lang/base_object.cc \
8                lang/class_list.cc \
9                \
10                coord/p_node.cc \
11                \
12                util/substring.cc \
13                util/color.cc \
14                util/helper_functions.cc \
15                util/multi_type.cc \
16                util/executor/executor.cc \
17                util/executor/executor_functional.cc \
18                \
19                util/loading/resource_manager.cc \
20                util/loading/resource.cc \
21                util/loading/game_loader.cc \
22                util/loading/load_param.cc \
23                util/loading/load_param_description.cc \
24                util/loading/factory.cc \
25                util/loading/dynamic_loader.cc \
26                util/preferences.cc \
27                util/threading.cc \
28                util/file.cc \
29                util/directory.cc \
30                util/timer.cc \
31                \
32                data/data_tank.cc
33
34noinst_HEADERS = \
35                lang/base_object.h \
36                lang/class_list.h \
37                \
38                coord/p_node.h \
39                \
40                util/substring.h \
41                util/multi_type.h \
42                util/color.h \
43                util/helper_functions.h \
44                util/executor/executor.h \
45                util/executor/executor_functional.h \
46                util/executor/executor_xml.h \
47                util/executor/functor_list.h \
48                util/preferences.h \
49                util/threading.h \
50                util/file.h \
51                util/directory.h \
52                util/timer.h \
53                \
54                util/loading/resource_manager.h \
55                util/loading/resource.h \
56                util/loading/game_loader.h \
57                util/loading/load_param.h \
58                util/loading/load_param_description.h \
59                util/loading/factory.h \
60                util/loading/dynamic_loader.h \
61                \
62                util/count_pointer.h \
63                util/list.h \
64                \
65                \
66                data/data_tank.h
67
68SUBDIRS = \
69        . \
70        math \
71        graphics \
72        sound \
73        event \
74        physics \
75        particles \
76        collision_detection \
77        collision_reaction \
78        network \
79        parser \
80        shell \
81        gui
Note: See TracBrowser for help on using the repository browser.