Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/new_class_id/src/lib/util/Makefile.am @ 9748

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

completely documented Executors

File size: 1.6 KB
Line 
1MAINSRCDIR=../..
2include $(MAINSRCDIR)/defs/include_paths.am
3
4noinst_LIBRARIES = \
5                libORXlibutil.a \
6                libORXexecutor.a
7
8libORXexecutor_a_SOURCES = \
9                executor/executor.cc \
10                executor/executor_lua_state.cc \
11                executor/executor_substring.cc
12
13libORXlibutil_a_SOURCES = \
14                substring.cc \
15                color.cc \
16                helper_functions.cc \
17                multi_type.cc \
18                \
19                loading/resource_manager.cc \
20                loading/resource.cc \
21                loading/game_loader.cc \
22                loading/load_param.cc \
23                loading/load_param_xml.cc \
24                loading/load_param_description.cc \
25                loading/factory.cc \
26                loading/fast_factory.cc \
27                \
28                filesys/file.cc \
29                filesys/directory.cc \
30                filesys/net_link.cc \
31                \
32                preferences.cc \
33                threading.cc \
34                timer.cc
35
36#               loading/dynamic_loader.cc
37
38
39noinst_HEADERS = \
40                substring.h \
41                multi_type.h \
42                color.h \
43                helper_functions.h \
44                \
45                \
46                executor/executor.h \
47                executor/executor_xml.h \
48                executor/executor_lua_state.h \
49                executor/executor_substring.h \
50                executor/executor_generic.h \
51                executor/executor_member.h \
52                executor/executor_const_member.h \
53                executor/executor_static.h \
54                \
55                executor/functor_list.h \
56                executor/functor_generic.h \
57                executor/functor_member.h \
58                executor/functor_const_member.h \
59                executor/functor_static.h \
60                \
61                \
62                filesys/file.h \
63                filesys/directory.h \
64                filesys/net_link.h \
65                \
66                preferences.h \
67                threading.h \
68                timer.h \
69                \
70                loading/resource_manager.h \
71                loading/resource.h \
72                loading/game_loader.h \
73                loading/load_param.h \
74                loading/load_param_xml.h \
75                loading/load_param_description.h \
76                loading/factory.h \
77                loading/fast_factory.h \
78                loading/dynamic_loader.h \
79                \
80                count_pointer.h \
81                list.h
Note: See TracBrowser for help on using the repository browser.