Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

orxonox/trunk: ClassList objectively implemented. This is not the fastest, but the most modular approach.
Now is the question of redundancy in code writing:
Should the ClassWriter explicitely declare a Class with superclasses, or should on runtime each object decide for itself, as it is done in BaseObject at the moment… questions questions questions…

File size: 423 bytes
Line 
1MAINSRCDIR=../..
2include $(MAINSRCDIR)/defs/include_paths.am
3
4noinst_LIBRARIES = libORXlang.a
5
6libORXlang_a_SOURCES = \
7                base_object.cc \
8                class_list.cc \
9                new_class_id.cc \
10                new_object_list.cc
11
12noinst_HEADERS = \
13                base_object.h \
14                class_list.h \
15                new_class_id.h \
16                new_object_list.h
17
18
19
20
21bin_PROGRAMS = test_object_list
22
23test_object_list_SOURCES = \
24                test_object_list.cc
25
26test_object_list_LDADD = \
27                libORXlang.a
Note: See TracBrowser for help on using the repository browser.