Changeset 3481 in orxonox.OLD for orxonox/trunk/src
- Timestamp:
- Mar 10, 2005, 9:06:21 PM (20 years ago)
- Location:
- orxonox/trunk/src
- Files:
-
- 1 added
- 2 edited
- 4 moved
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/Makefile.am
r3478 r3481 7 7 AM_CXXFLAGS+="-I./network" 8 8 AM_CXXFLAGS+="-I./glmenu" 9 AM_CXXFLAGS+="-I./ai" 9 10 10 11 AM_LDFLAGS= $(MWINDOWS) … … 17 18 orxonox_SOURCES= orxonox.cc \ 18 19 game_loader.cc \ 19 data_tank.cc \20 20 command_node.cc \ 21 21 keynames.cc \ … … 28 28 track_manager.cc \ 29 29 light.cc \ 30 \31 30 story_entities/story_entity.cc \ 32 31 story_entities/campaign.cc \ 33 32 story_entities/world.cc \ 34 \35 33 world_entities/world_entity.cc \ 36 34 world_entities/player.cc \ 37 35 world_entities/environment.cc \ 38 36 world_entities/skysphere.cc \ 39 37 ai/ai.cc \ 40 38 importer/array.cc \ 41 39 importer/objModel.cc \ … … 43 41 importer/material.cc \ 44 42 importer/texture.cc \ 45 \46 43 mathlib/vector.cc \ 47 44 mathlib/matrix.cc \ 48 45 mathlib/curve.cc \ 49 46 lib/data_tank.cc \ 50 47 lib/ini_parser.cc \ 51 48 lib/list.cc \ 52 \53 49 glmenu/glmenu_imagescreen.cc \ 54 \55 50 font/fontset.cc 56 51 57 noinst_HEADERS = ability.h \ 58 data_tank.h \ 59 world_entities/npc.h \ 60 defs/stdincl.h \ 52 noinst_HEADERS = orxonox.h \ 53 game_loader.h \ 54 track_manager.h \ 55 base_object.h \ 56 p_node.h \ 57 null_parent.h \ 58 helper_parent.h \ 61 59 glincl.h \ 62 ai.h \ 63 world_entities/environment.h \ 64 orxonox.h \ 65 network/synchronisable.h \ 60 ability.h \ 66 61 base_entity.h \ 67 defs/error.h \68 world_entities/player.h \69 62 camera.h \ 70 lib/ini_parser.h \71 63 power_up.h \ 72 mathlib/vector.h \73 64 keynames.h \ 74 65 proto_class.h \ 75 story_entities/world.h \76 66 command_node.h \ 77 lib/list.h \78 world_entities/shoot_laser.h \79 world_entities/world_entity.h \80 67 message_structures.h \ 81 world_entities/shoot_rocket.h \ 82 lib/list_template.h \ 68 light.h \ 83 69 story_entities/story_entity.h \ 84 70 story_entities/story_def.h \ 85 game_loader.h \86 71 story_entities/campaign.h \ 87 p_node.h \ 88 null_parent.h \ 89 base_object.h \ 90 helper_parent.h \ 91 track_manager.h \ 72 story_entities/world.h \ 73 world_entities/world_entity.h \ 74 world_entities/player.h \ 75 world_entities/npc.h \ 76 world_entities/environment.h \ 77 world_entities/skysphere.h \ 78 world_entities/shoot_laser.h \ 79 world_entities/shoot_rocket.h \ 80 ai/ai.h \ 81 network/synchronisable.h \ 82 mathlib/vector.h \ 92 83 mathlib/matrix.h \ 93 84 mathlib/curve.h \ 85 defs/stdincl.h \ 86 defs/error.h \ 87 defs/debug.h \ 88 lib/data_tank.h \ 89 lib/ini_parser.h \ 90 lib/list.h \ 91 lib/list_template.h \ 94 92 glmenu/glmenu_imagescreen.h \ 95 defs/debug.h \96 world_entities/skysphere.h \97 light.h \98 93 font/fontset.h 99 94 -
orxonox/trunk/src/Makefile.in
r3478 r3481 54 54 PROGRAMS = $(bin_PROGRAMS) 55 55 am_orxonox_OBJECTS = orxonox.$(OBJEXT) game_loader.$(OBJEXT) \ 56 data_tank.$(OBJEXT) command_node.$(OBJEXT) keynames.$(OBJEXT) \57 camera.$(OBJEXT) base_entity.$(OBJEXT) base_object.$(OBJEXT) \58 p_node.$(OBJEXT)null_parent.$(OBJEXT) helper_parent.$(OBJEXT) \56 command_node.$(OBJEXT) keynames.$(OBJEXT) camera.$(OBJEXT) \ 57 base_entity.$(OBJEXT) base_object.$(OBJEXT) p_node.$(OBJEXT) \ 58 null_parent.$(OBJEXT) helper_parent.$(OBJEXT) \ 59 59 track_manager.$(OBJEXT) light.$(OBJEXT) story_entity.$(OBJEXT) \ 60 60 campaign.$(OBJEXT) world.$(OBJEXT) world_entity.$(OBJEXT) \ 61 61 player.$(OBJEXT) environment.$(OBJEXT) skysphere.$(OBJEXT) \ 62 array.$(OBJEXT) objModel.$(OBJEXT) model.$(OBJEXT) \ 63 material.$(OBJEXT) texture.$(OBJEXT) vector.$(OBJEXT) \ 64 matrix.$(OBJEXT) curve.$(OBJEXT) ini_parser.$(OBJEXT) \ 65 list.$(OBJEXT) glmenu_imagescreen.$(OBJEXT) fontset.$(OBJEXT) 62 ai.$(OBJEXT) array.$(OBJEXT) objModel.$(OBJEXT) \ 63 model.$(OBJEXT) material.$(OBJEXT) texture.$(OBJEXT) \ 64 vector.$(OBJEXT) matrix.$(OBJEXT) curve.$(OBJEXT) \ 65 data_tank.$(OBJEXT) ini_parser.$(OBJEXT) list.$(OBJEXT) \ 66 glmenu_imagescreen.$(OBJEXT) fontset.$(OBJEXT) 66 67 orxonox_OBJECTS = $(am_orxonox_OBJECTS) 67 68 orxonox_LDADD = $(LDADD) … … 69 70 depcomp = $(SHELL) $(top_srcdir)/depcomp 70 71 am__depfiles_maybe = depfiles 71 @AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/a rray.Po \72 @AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/ai.Po ./$(DEPDIR)/array.Po \ 72 73 @AMDEP_TRUE@ ./$(DEPDIR)/base_entity.Po \ 73 74 @AMDEP_TRUE@ ./$(DEPDIR)/base_object.Po ./$(DEPDIR)/camera.Po \ … … 213 214 target_os = @target_os@ 214 215 target_vendor = @target_vendor@ 215 AM_CXXFLAGS = "-I./world_entities" "-I./story_entities" "-I./mathlib" "-I./lib" "-I./defs" "-I./font" "-I./network" "-I./glmenu" 216 AM_CXXFLAGS = "-I./world_entities" "-I./story_entities" "-I./mathlib" "-I./lib" "-I./defs" "-I./font" "-I./network" "-I./glmenu" "-I./ai" 216 217 AM_LDFLAGS = $(MWINDOWS) 217 218 orxonox_SOURCES = orxonox.cc \ 218 219 game_loader.cc \ 219 data_tank.cc \220 220 command_node.cc \ 221 221 keynames.cc \ … … 228 228 track_manager.cc \ 229 229 light.cc \ 230 \231 230 story_entities/story_entity.cc \ 232 231 story_entities/campaign.cc \ 233 232 story_entities/world.cc \ 234 \235 233 world_entities/world_entity.cc \ 236 234 world_entities/player.cc \ 237 235 world_entities/environment.cc \ 238 236 world_entities/skysphere.cc \ 239 237 ai/ai.cc \ 240 238 importer/array.cc \ 241 239 importer/objModel.cc \ … … 243 241 importer/material.cc \ 244 242 importer/texture.cc \ 245 \246 243 mathlib/vector.cc \ 247 244 mathlib/matrix.cc \ 248 245 mathlib/curve.cc \ 249 246 lib/data_tank.cc \ 250 247 lib/ini_parser.cc \ 251 248 lib/list.cc \ 252 \253 249 glmenu/glmenu_imagescreen.cc \ 254 \255 250 font/fontset.cc 256 251 257 noinst_HEADERS = ability.h \ 258 data_tank.h \ 259 world_entities/npc.h \ 260 defs/stdincl.h \ 252 noinst_HEADERS = orxonox.h \ 253 game_loader.h \ 254 track_manager.h \ 255 base_object.h \ 256 p_node.h \ 257 null_parent.h \ 258 helper_parent.h \ 261 259 glincl.h \ 262 ai.h \ 263 world_entities/environment.h \ 264 orxonox.h \ 265 network/synchronisable.h \ 260 ability.h \ 266 261 base_entity.h \ 267 defs/error.h \268 world_entities/player.h \269 262 camera.h \ 270 lib/ini_parser.h \271 263 power_up.h \ 272 mathlib/vector.h \273 264 keynames.h \ 274 265 proto_class.h \ 275 story_entities/world.h \276 266 command_node.h \ 277 lib/list.h \278 world_entities/shoot_laser.h \279 world_entities/world_entity.h \280 267 message_structures.h \ 281 world_entities/shoot_rocket.h \ 282 lib/list_template.h \ 268 light.h \ 283 269 story_entities/story_entity.h \ 284 270 story_entities/story_def.h \ 285 game_loader.h \286 271 story_entities/campaign.h \ 287 p_node.h \ 288 null_parent.h \ 289 base_object.h \ 290 helper_parent.h \ 291 track_manager.h \ 272 story_entities/world.h \ 273 world_entities/world_entity.h \ 274 world_entities/player.h \ 275 world_entities/npc.h \ 276 world_entities/environment.h \ 277 world_entities/skysphere.h \ 278 world_entities/shoot_laser.h \ 279 world_entities/shoot_rocket.h \ 280 ai/ai.h \ 281 network/synchronisable.h \ 282 mathlib/vector.h \ 292 283 mathlib/matrix.h \ 293 284 mathlib/curve.h \ 285 defs/stdincl.h \ 286 defs/error.h \ 287 defs/debug.h \ 288 lib/data_tank.h \ 289 lib/ini_parser.h \ 290 lib/list.h \ 291 lib/list_template.h \ 294 292 glmenu/glmenu_imagescreen.h \ 295 defs/debug.h \296 world_entities/skysphere.h \297 light.h \298 293 font/fontset.h 299 294 … … 377 372 -rm -f *.tab.c 378 373 374 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ai.Po@am__quote@ 379 375 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/array.Po@am__quote@ 380 376 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/base_entity.Po@am__quote@ … … 538 534 @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o skysphere.obj `if test -f 'world_entities/skysphere.cc'; then $(CYGPATH_W) 'world_entities/skysphere.cc'; else $(CYGPATH_W) '$(srcdir)/world_entities/skysphere.cc'; fi` 539 535 536 ai.o: ai/ai.cc 537 @am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT ai.o -MD -MP -MF "$(DEPDIR)/ai.Tpo" -c -o ai.o `test -f 'ai/ai.cc' || echo '$(srcdir)/'`ai/ai.cc; \ 538 @am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/ai.Tpo" "$(DEPDIR)/ai.Po"; else rm -f "$(DEPDIR)/ai.Tpo"; exit 1; fi 539 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='ai/ai.cc' object='ai.o' libtool=no @AMDEPBACKSLASH@ 540 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/ai.Po' tmpdepfile='$(DEPDIR)/ai.TPo' @AMDEPBACKSLASH@ 541 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ 542 @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o ai.o `test -f 'ai/ai.cc' || echo '$(srcdir)/'`ai/ai.cc 543 544 ai.obj: ai/ai.cc 545 @am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT ai.obj -MD -MP -MF "$(DEPDIR)/ai.Tpo" -c -o ai.obj `if test -f 'ai/ai.cc'; then $(CYGPATH_W) 'ai/ai.cc'; else $(CYGPATH_W) '$(srcdir)/ai/ai.cc'; fi`; \ 546 @am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/ai.Tpo" "$(DEPDIR)/ai.Po"; else rm -f "$(DEPDIR)/ai.Tpo"; exit 1; fi 547 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='ai/ai.cc' object='ai.obj' libtool=no @AMDEPBACKSLASH@ 548 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/ai.Po' tmpdepfile='$(DEPDIR)/ai.TPo' @AMDEPBACKSLASH@ 549 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ 550 @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o ai.obj `if test -f 'ai/ai.cc'; then $(CYGPATH_W) 'ai/ai.cc'; else $(CYGPATH_W) '$(srcdir)/ai/ai.cc'; fi` 551 540 552 array.o: importer/array.cc 541 553 @am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT array.o -MD -MP -MF "$(DEPDIR)/array.Tpo" -c -o array.o `test -f 'importer/array.cc' || echo '$(srcdir)/'`importer/array.cc; \ … … 665 677 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ 666 678 @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o curve.obj `if test -f 'mathlib/curve.cc'; then $(CYGPATH_W) 'mathlib/curve.cc'; else $(CYGPATH_W) '$(srcdir)/mathlib/curve.cc'; fi` 679 680 data_tank.o: lib/data_tank.cc 681 @am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT data_tank.o -MD -MP -MF "$(DEPDIR)/data_tank.Tpo" -c -o data_tank.o `test -f 'lib/data_tank.cc' || echo '$(srcdir)/'`lib/data_tank.cc; \ 682 @am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/data_tank.Tpo" "$(DEPDIR)/data_tank.Po"; else rm -f "$(DEPDIR)/data_tank.Tpo"; exit 1; fi 683 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='lib/data_tank.cc' object='data_tank.o' libtool=no @AMDEPBACKSLASH@ 684 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/data_tank.Po' tmpdepfile='$(DEPDIR)/data_tank.TPo' @AMDEPBACKSLASH@ 685 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ 686 @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o data_tank.o `test -f 'lib/data_tank.cc' || echo '$(srcdir)/'`lib/data_tank.cc 687 688 data_tank.obj: lib/data_tank.cc 689 @am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT data_tank.obj -MD -MP -MF "$(DEPDIR)/data_tank.Tpo" -c -o data_tank.obj `if test -f 'lib/data_tank.cc'; then $(CYGPATH_W) 'lib/data_tank.cc'; else $(CYGPATH_W) '$(srcdir)/lib/data_tank.cc'; fi`; \ 690 @am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/data_tank.Tpo" "$(DEPDIR)/data_tank.Po"; else rm -f "$(DEPDIR)/data_tank.Tpo"; exit 1; fi 691 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='lib/data_tank.cc' object='data_tank.obj' libtool=no @AMDEPBACKSLASH@ 692 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/data_tank.Po' tmpdepfile='$(DEPDIR)/data_tank.TPo' @AMDEPBACKSLASH@ 693 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ 694 @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o data_tank.obj `if test -f 'lib/data_tank.cc'; then $(CYGPATH_W) 'lib/data_tank.cc'; else $(CYGPATH_W) '$(srcdir)/lib/data_tank.cc'; fi` 667 695 668 696 ini_parser.o: lib/ini_parser.cc … … 852 880 853 881 distdir: $(DISTFILES) 854 $(mkdir_p) $(distdir)/ defs $(distdir)/font $(distdir)/glmenu $(distdir)/lib $(distdir)/mathlib $(distdir)/network $(distdir)/story_entities $(distdir)/world_entities882 $(mkdir_p) $(distdir)/ai $(distdir)/defs $(distdir)/font $(distdir)/glmenu $(distdir)/lib $(distdir)/mathlib $(distdir)/network $(distdir)/story_entities $(distdir)/world_entities 855 883 @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ 856 884 topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
Note: See TracChangeset
for help on using the changeset viewer.