- Timestamp:
- Jun 14, 2006, 10:49:48 AM (18 years ago)
- Location:
- trunk/src/lib
- Files:
-
- 2 edited
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/lib/BuildLibs.am
r8271 r8367 24 24 $(LIB_PREFIX)/shell/libORXshell.a \ 25 25 $(LIB_PREFIX)/math/libORXmath.a \ 26 $(LIB_PREFIX)/util/libORXlibutil.a \ 26 27 $(LIB_PREFIX)/libORXlibs.a -
trunk/src/lib/Makefile.am
r8330 r8367 10 10 coord/p_node.cc \ 11 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 util/executor/executor_lua.cc \19 \20 util/loading/resource_manager.cc \21 util/loading/resource.cc \22 util/loading/game_loader.cc \23 util/loading/load_param.cc \24 util/loading/load_param_description.cc \25 util/loading/factory.cc \26 util/loading/dynamic_loader.cc \27 \28 util/filesys/file.cc \29 util/filesys/directory.cc \30 \31 util/preferences.cc \32 util/threading.cc \33 util/timer.cc \34 \35 12 data/data_tank.cc 36 13 … … 41 18 coord/p_node.h \ 42 19 \ 43 util/substring.h \44 util/multi_type.h \45 util/color.h \46 util/helper_functions.h \47 util/executor/executor.h \48 util/executor/executor_functional.h \49 util/executor/executor_xml.h \50 util/executor/executor_lua.h \51 util/executor/functor_list.h \52 \53 util/filesys/file.h \54 util/filesys/directory.h \55 \56 util/preferences.h \57 util/threading.h \58 util/timer.h \59 \60 util/loading/resource_manager.h \61 util/loading/resource.h \62 util/loading/game_loader.h \63 util/loading/load_param.h \64 util/loading/load_param_description.h \65 util/loading/factory.h \66 util/loading/dynamic_loader.h \67 \68 util/count_pointer.h \69 util/list.h \70 \71 \72 20 data/data_tank.h 73 21 … … 75 23 . \ 76 24 math \ 25 util \ 77 26 graphics \ 78 27 sound \ -
trunk/src/lib/util/Makefile.am
r8366 r8367 2 2 include $(MAINSRCDIR)/defs/include_paths.am 3 3 4 noinst_LIBRARIES = libORX event.a4 noinst_LIBRARIES = libORXlibutil.a 5 5 6 libORXevent_a_SOURCES = event_handler.cc \ 7 event_listener.cc \ 8 key_mapper.cc \ 9 key_names.cc 6 libORXlibutil_a_SOURCES = \ 7 substring.cc \ 8 color.cc \ 9 helper_functions.cc \ 10 multi_type.cc \ 11 executor/executor.cc \ 12 executor/executor_functional.cc \ 13 executor/executor_lua.cc \ 14 \ 15 loading/resource_manager.cc \ 16 loading/resource.cc \ 17 loading/game_loader.cc \ 18 loading/load_param.cc \ 19 loading/load_param_description.cc \ 20 loading/factory.cc \ 21 loading/dynamic_loader.cc \ 22 \ 23 filesys/file.cc \ 24 filesys/directory.cc \ 25 \ 26 preferences.cc \ 27 threading.cc \ 28 timer.cc 10 29 11 12 noinst_HEADERS = event.h \ 13 event_handler.h \ 14 event_listener.h \ 15 key_mapper.h \ 16 key_names.h \ 17 event_def.h 18 30 noinst_HEADERS = \ 31 substring.h \ 32 multi_type.h \ 33 color.h \ 34 helper_functions.h \ 35 executor/executor.h \ 36 executor/executor_functional.h \ 37 executor/executor_xml.h \ 38 executor/executor_lua.h \ 39 executor/functor_list.h \ 40 \ 41 filesys/file.h \ 42 filesys/directory.h \ 43 \ 44 preferences.h \ 45 threading.h \ 46 timer.h \ 47 \ 48 loading/resource_manager.h \ 49 loading/resource.h \ 50 loading/game_loader.h \ 51 loading/load_param.h \ 52 loading/load_param_description.h \ 53 loading/factory.h \ 54 loading/dynamic_loader.h \ 55 \ 56 count_pointer.h \ 57 list.h
Note: See TracChangeset
for help on using the changeset viewer.