Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 3470 in orxonox.OLD


Ignore:
Timestamp:
Mar 10, 2005, 2:00:10 PM (19 years ago)
Author:
bensch
Message:

orxonox/trunk: moved player to a subfolder named world_entity, and reorganized it in the Makefile.am

Location:
orxonox/trunk/src
Files:
1 added
5 edited
2 moved

Legend:

Unmodified
Added
Removed
  • orxonox/trunk/src/Makefile.am

    r3460 r3470  
    1 #AM_CXXFLAGS=""
     1AM_CXXFLAGS="-I./world_entity"
    22AM_LDFLAGS= $(MWINDOWS)
    33
     
    99orxonox_SOURCES= orxonox.cc \
    1010                 world.cc \
    11                  player.cc \
     11                 world_entity/player.cc \
    1212                 collision.cc \
    1313                 data_tank.cc \
     
    5353                 base_entity.h \
    5454                 error.h \
    55                  player.h \
     55                 world_entity/player.h \
    5656                 camera.h \
    5757                 ini_parser.h \
  • orxonox/trunk/src/Makefile.in

    r3460 r3470  
    214214target_os = @target_os@
    215215target_vendor = @target_vendor@
    216 
    217 #AM_CXXFLAGS=""
     216AM_CXXFLAGS = "-I./world_entity"
    218217AM_LDFLAGS = $(MWINDOWS)
    219218orxonox_SOURCES = orxonox.cc \
    220219                 world.cc \
    221                  player.cc \
     220                 world_entity/player.cc \
    222221                 collision.cc \
    223222                 data_tank.cc \
     
    263262                 base_entity.h \
    264263                 error.h \
    265                  player.h \
     264                 world_entity/player.h \
    266265                 camera.h \
    267266                 ini_parser.h \
     
    321320          esac; \
    322321        done; \
    323         echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign  src/Makefile'; \
     322        echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  src/Makefile'; \
    324323        cd $(top_srcdir) && \
    325           $(AUTOMAKE) --foreign  src/Makefile
     324          $(AUTOMAKE) --gnu  src/Makefile
    326325.PRECIOUS: Makefile
    327326Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
     
    423422@AMDEP_TRUE@@am__fastdepCXX_FALSE@      $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
    424423@am__fastdepCXX_FALSE@  $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
     424
     425player.o: world_entity/player.cc
     426@am__fastdepCXX_TRUE@   if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT player.o -MD -MP -MF "$(DEPDIR)/player.Tpo" -c -o player.o `test -f 'world_entity/player.cc' || echo '$(srcdir)/'`world_entity/player.cc; \
     427@am__fastdepCXX_TRUE@   then mv -f "$(DEPDIR)/player.Tpo" "$(DEPDIR)/player.Po"; else rm -f "$(DEPDIR)/player.Tpo"; exit 1; fi
     428@AMDEP_TRUE@@am__fastdepCXX_FALSE@      source='world_entity/player.cc' object='player.o' libtool=no @AMDEPBACKSLASH@
     429@AMDEP_TRUE@@am__fastdepCXX_FALSE@      depfile='$(DEPDIR)/player.Po' tmpdepfile='$(DEPDIR)/player.TPo' @AMDEPBACKSLASH@
     430@AMDEP_TRUE@@am__fastdepCXX_FALSE@      $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
     431@am__fastdepCXX_FALSE@  $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o player.o `test -f 'world_entity/player.cc' || echo '$(srcdir)/'`world_entity/player.cc
     432
     433player.obj: world_entity/player.cc
     434@am__fastdepCXX_TRUE@   if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT player.obj -MD -MP -MF "$(DEPDIR)/player.Tpo" -c -o player.obj `if test -f 'world_entity/player.cc'; then $(CYGPATH_W) 'world_entity/player.cc'; else $(CYGPATH_W) '$(srcdir)/world_entity/player.cc'; fi`; \
     435@am__fastdepCXX_TRUE@   then mv -f "$(DEPDIR)/player.Tpo" "$(DEPDIR)/player.Po"; else rm -f "$(DEPDIR)/player.Tpo"; exit 1; fi
     436@AMDEP_TRUE@@am__fastdepCXX_FALSE@      source='world_entity/player.cc' object='player.obj' libtool=no @AMDEPBACKSLASH@
     437@AMDEP_TRUE@@am__fastdepCXX_FALSE@      depfile='$(DEPDIR)/player.Po' tmpdepfile='$(DEPDIR)/player.TPo' @AMDEPBACKSLASH@
     438@AMDEP_TRUE@@am__fastdepCXX_FALSE@      $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
     439@am__fastdepCXX_FALSE@  $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o player.obj `if test -f 'world_entity/player.cc'; then $(CYGPATH_W) 'world_entity/player.cc'; else $(CYGPATH_W) '$(srcdir)/world_entity/player.cc'; fi`
    425440
    426441model.o: importer/model.cc
     
    642657
    643658distdir: $(DISTFILES)
    644         $(mkdir_p) $(distdir)/sfont
     659        $(mkdir_p) $(distdir)/sfont $(distdir)/world_entity
    645660        @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
    646661        topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
  • orxonox/trunk/src/console/Makefile.in

    r3459 r3470  
    203203          esac; \
    204204        done; \
    205         echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign  src/console/Makefile'; \
     205        echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  src/console/Makefile'; \
    206206        cd $(top_srcdir) && \
    207           $(AUTOMAKE) --foreign  src/console/Makefile
     207          $(AUTOMAKE) --gnu  src/console/Makefile
    208208.PRECIOUS: Makefile
    209209Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
  • orxonox/trunk/src/gui/Makefile.in

    r3459 r3470  
    234234          esac; \
    235235        done; \
    236         echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign  src/gui/Makefile'; \
     236        echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  src/gui/Makefile'; \
    237237        cd $(top_srcdir) && \
    238           $(AUTOMAKE) --foreign  src/gui/Makefile
     238          $(AUTOMAKE) --gnu  src/gui/Makefile
    239239.PRECIOUS: Makefile
    240240Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
  • orxonox/trunk/src/importer/Makefile.in

    r3459 r3470  
    215215          esac; \
    216216        done; \
    217         echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign  src/importer/Makefile'; \
     217        echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  src/importer/Makefile'; \
    218218        cd $(top_srcdir) && \
    219           $(AUTOMAKE) --foreign  src/importer/Makefile
     219          $(AUTOMAKE) --gnu  src/importer/Makefile
    220220.PRECIOUS: Makefile
    221221Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
Note: See TracChangeset for help on using the changeset viewer.