Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

Last change on this file since 7847 was 7819, checked in by patrick, 18 years ago

trunk: added a collision reaction lib. starting implementation

File size: 1.5 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                \
31                data/data_tank.cc
32
33noinst_HEADERS = \
34                lang/base_object.h \
35                lang/class_list.h \
36                \
37                coord/p_node.h \
38                \
39                util/substring.h \
40                util/multi_type.h \
41                util/color.h \
42                util/helper_functions.h \
43                util/executor/executor.h \
44                util/executor/executor_functional.h \
45                util/executor/executor_specials.h \
46                util/executor/functor_list.h \
47                util/preferences.h \
48                util/threading.h \
49                util/file.h \
50                util/directory.h \
51                \
52                util/loading/resource_manager.h \
53                util/loading/resource.h \
54                util/loading/game_loader.h \
55                util/loading/load_param.h \
56                util/loading/load_param_description.h \
57                util/loading/factory.h \
58                util/loading/dynamic_loader.h \
59                \
60                util/count_pointer.h \
61                util/list.h \
62                \
63                \
64                data/data_tank.h
65
66SUBDIRS = \
67        . \
68        math \
69        graphics \
70        sound \
71        event \
72        physics \
73        particles \
74        collision_detection \
75        collision_reaction \
76        network \
77        parser \
78        shell \
79        gui
Note: See TracBrowser for help on using the repository browser.