Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

trunk: added a collision reaction lib. starting implementation

File size: 1.5 KB
RevLine 
[5349]1MAINSRCDIR=..
2include $(MAINSRCDIR)/defs/include_paths.am
3
[5463]4noinst_LIBRARIES = libORXlibs.a
[5349]5
[7033]6libORXlibs_a_SOURCES = \
7                lang/base_object.cc \
8                lang/class_list.cc \
[7165]9                \
[7163]10                coord/p_node.cc \
[7165]11                \
[7033]12                util/substring.cc \
13                util/color.cc \
14                util/helper_functions.cc \
15                util/multi_type.cc \
[7163]16                util/executor/executor.cc \
[7721]17                util/executor/executor_functional.cc \
[7165]18                \
[7193]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 \
[7256]26                util/preferences.cc \
[7329]27                util/threading.cc \
[7661]28                util/file.cc \
29                util/directory.cc \
[7193]30                \
[7163]31                data/data_tank.cc
[5349]32
[7033]33noinst_HEADERS = \
34                lang/base_object.h \
35                lang/class_list.h \
[7165]36                \
37                coord/p_node.h \
38                \
[7033]39                util/substring.h \
[7164]40                util/multi_type.h \
[7033]41                util/color.h \
42                util/helper_functions.h \
43                util/executor/executor.h \
[7716]44                util/executor/executor_functional.h \
[7033]45                util/executor/executor_specials.h \
46                util/executor/functor_list.h \
[7256]47                util/preferences.h \
[7329]48                util/threading.h \
[7661]49                util/file.h \
50                util/directory.h \
[7193]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                \
[7163]60                util/count_pointer.h \
[7164]61                util/list.h \
[7165]62                \
[7193]63                \
[7165]64                data/data_tank.h
[5349]65
[7033]66SUBDIRS = \
[7221]67        . \
[7033]68        math \
69        graphics \
70        sound \
71        event \
72        physics \
73        particles \
74        collision_detection \
[7819]75        collision_reaction \
[7033]76        network \
77        parser \
78        shell \
[7221]79        gui
Note: See TracBrowser for help on using the repository browser.