- Timestamp:
- Apr 2, 2006, 8:34:49 PM (19 years ago)
- Location:
- branches/shared_lib
- Files:
-
- 4 edited
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
branches/shared_lib/configure.ac
r7272 r7275 298 298 MSBITFIELDS="-mms-bitfields" 299 299 MWINDOWS="-mwindows" 300 LDFLAGS="$LDFLAGS " 300 301 #--------# 301 302 # MIN-GW # … … 392 393 Linux="yes" 393 394 395 LDFLAGS="$LDFLAGS -rdynamic" 394 396 ##CPPFLAGS="-I/usr/include $CPPFLAGS" 395 397 ##LDFLAGS="-L/usr/lib $LDFLAGS" … … 637 639 src/lib/Makefile 638 640 src/lib/math/Makefile 641 src/lib/util/Makefile 639 642 src/lib/graphics/Makefile 640 643 src/lib/graphics/importer/Makefile -
branches/shared_lib/src/Makefile.am
r7274 r7275 12 12 13 13 orxonox_CPPFLAGS = -DIS_ORXONOX -DPKG_LIBDIR="\"$(pkglibdir)\"" 14 orxonox_LDFLAGS = --export-dynamic -ldl -rdynamic14 orxonox_LDFLAGS = --export-dynamic 15 15 ##-ldl -rdynamic 16 16 -
branches/shared_lib/src/lib/BuildLibs.am
r7264 r7275 4 4 $(LIB_PREFIX)/gui/gtk_gui/libORXgui.a \ 5 5 $(LIB_PREFIX)/gui/gl_gui/libORXglgui.a \ 6 $(LIB_PREFIX)/graphics/importer/libORXimporter.la \7 6 $(LIB_PREFIX)/graphics/libORXgraphics.a \ 8 $(LIB_PREFIX)/sound/libORXsound.a \9 7 $(LIB_PREFIX)/event/libORXevent.a \ 10 8 $(LIB_PREFIX)/physics/libORXphysics.a \ … … 18 16 $(LIB_PREFIX)/parser/ini_parser/libIniParser.a \ 19 17 $(LIB_PREFIX)/shell/libORXshell.a \ 18 $(LIB_PREFIX)/util/libORXlibutil.a \ 19 $(LIB_PREFIX)/sound/libORXsound.a \ 20 $(LIB_PREFIX)/graphics/importer/libORXimporter.la \ 20 21 $(LIB_PREFIX)/math/libORXmath.a \ 21 22 $(LIB_PREFIX)/libORXlibs.a -
branches/shared_lib/src/lib/Makefile.am
r7256 r7275 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 \18 util/loading/resource_manager.cc \19 util/loading/resource.cc \20 util/loading/game_loader.cc \21 util/loading/load_param.cc \22 util/loading/load_param_description.cc \23 util/loading/factory.cc \24 util/loading/dynamic_loader.cc \25 util/preferences.cc \26 12 \ 27 13 data/data_tank.cc … … 33 19 coord/p_node.h \ 34 20 \ 35 util/substring.h \36 util/multi_type.h \37 util/color.h \38 util/helper_functions.h \39 util/executor/executor.h \40 util/executor/executor_specials.h \41 util/executor/functor_list.h \42 util/preferences.h \43 \44 util/loading/resource_manager.h \45 util/loading/resource.h \46 util/loading/game_loader.h \47 util/loading/load_param.h \48 util/loading/load_param_description.h \49 util/loading/factory.h \50 util/loading/dynamic_loader.h \51 \52 util/count_pointer.h \53 util/list.h \54 \55 21 \ 56 22 data/data_tank.h … … 59 25 . \ 60 26 math \ 27 util \ 61 28 graphics \ 62 29 sound \ -
branches/shared_lib/src/lib/util/Makefile.am
r7274 r7275 2 2 include $(MAINSRCDIR)/defs/include_paths.am 3 3 4 noinst_LIBRARIES = libORX net.a4 noinst_LIBRARIES = libORXlibutil.a 5 5 6 libORXnet_a_SOURCES = synchronizeable.cc \ 7 network_manager.cc \ 8 shared_network_data.cc \ 9 network_socket.cc \ 10 connection_monitor.cc \ 11 network_stream.cc \ 12 data_stream.cc \ 13 network_protocol.cc \ 14 server_socket.cc \ 15 handshake.cc \ 16 network_game_manager.cc \ 17 converter.cc 6 libORXlibutil_a_SOURCES = \ 7 substring.cc \ 8 color.cc \ 9 helper_functions.cc \ 10 multi_type.cc \ 11 executor/executor.cc \ 12 \ 13 loading/resource_manager.cc \ 14 loading/resource.cc \ 15 loading/game_loader.cc \ 16 loading/load_param.cc \ 17 loading/load_param_description.cc \ 18 loading/factory.cc \ 19 loading/dynamic_loader.cc \ 20 preferences.cc 18 21 19 22 20 23 24 noinst_HEADERS = \ 25 substring.h \ 26 multi_type.h \ 27 color.h \ 28 helper_functions.h \ 29 executor/executor.h \ 30 executor/executor_specials.h \ 31 executor/functor_list.h \ 32 preferences.h \ 33 \ 34 loading/resource_manager.h \ 35 loading/resource.h \ 36 loading/game_loader.h \ 37 loading/load_param.h \ 38 loading/load_param_description.h \ 39 loading/factory.h \ 40 loading/dynamic_loader.h \ 41 \ 42 count_pointer.h \ 43 list.h 21 44 22 noinst_HEADERS = synchronizeable.h \23 network_manager.h \24 shared_network_data.h \25 network_socket.h \26 connection_monitor.h \27 network_stream.h \28 data_stream.h \29 network_protocol.h \30 server_socket.h \31 handshake.h \32 network_game_manager.h \33 converter.h \34 netdefs.h35 36
Note: See TracChangeset
for help on using the changeset viewer.