Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 5160 in orxonox.OLD


Ignore:
Timestamp:
Sep 5, 2005, 8:12:38 AM (19 years ago)
Author:
bensch
Message:

orxonox/trunk: shell is now a lib for its own

Location:
trunk
Files:
23 edited
2 copied
4 moved

Legend:

Unmodified
Added
Removed
  • trunk/configure

    r5158 r5160  
    94469446## OUTPUT CONFIGURE ##
    94479447######################
    9448                                                                                                                                                                                     ac_config_files="$ac_config_files Makefile src/Makefile src/lib/Makefile src/lib/graphics/Makefile src/lib/graphics/importer/Makefile src/lib/graphics/spatial_separation/Makefile src/lib/sound/Makefile src/lib/event/Makefile src/lib/physics/Makefile src/lib/particles/Makefile src/lib/collision_detection/Makefile src/lib/gui/Makefile src/lib/tinyxml/Makefile src/subprojects/Makefile src/subprojects/testmain/Makefile src/subprojects/importer/Makefile src/subprojects/particles/Makefile src/subprojects/collision_detection/Makefile"
     9448                                                                                                                                                                                              ac_config_files="$ac_config_files Makefile src/Makefile src/lib/Makefile src/lib/graphics/Makefile src/lib/graphics/importer/Makefile src/lib/graphics/spatial_separation/Makefile src/lib/sound/Makefile src/lib/event/Makefile src/lib/physics/Makefile src/lib/particles/Makefile src/lib/collision_detection/Makefile src/lib/shell/Makefile src/lib/gui/Makefile src/lib/tinyxml/Makefile src/subprojects/Makefile src/subprojects/testmain/Makefile src/subprojects/importer/Makefile src/subprojects/particles/Makefile src/subprojects/collision_detection/Makefile"
    94499449
    94509450
     
    1005110051  "src/lib/particles/Makefile" ) CONFIG_FILES="$CONFIG_FILES src/lib/particles/Makefile" ;;
    1005210052  "src/lib/collision_detection/Makefile" ) CONFIG_FILES="$CONFIG_FILES src/lib/collision_detection/Makefile" ;;
     10053  "src/lib/shell/Makefile" ) CONFIG_FILES="$CONFIG_FILES src/lib/shell/Makefile" ;;
    1005310054  "src/lib/gui/Makefile" ) CONFIG_FILES="$CONFIG_FILES src/lib/gui/Makefile" ;;
    1005410055  "src/lib/tinyxml/Makefile" ) CONFIG_FILES="$CONFIG_FILES src/lib/tinyxml/Makefile" ;;
  • trunk/configure.ac

    r5158 r5160  
    635635                 src/lib/particles/Makefile
    636636                 src/lib/collision_detection/Makefile
     637                 src/lib/shell/Makefile
    637638                 src/lib/gui/Makefile
    638639                 src/lib/tinyxml/Makefile
  • trunk/orxonox.kdevelop

    r5159 r5160  
    140140  </kdevcppsupport>
    141141  <kdevfileview>
    142     <groups>
    143       <hidenonprojectfiles>false</hidenonprojectfiles>
    144       <hidenonlocation>false</hidenonlocation>
    145     </groups>
     142    <groups/>
    146143    <tree>
    147144      <hidepatterns>*.o,*.lo,*~,*in</hidepatterns>
     
    157154  <kdevdocumentation>
    158155    <projectdoc>
    159       <docsystem></docsystem>
    160       <docurl></docurl>
    161       <usermanualurl></usermanualurl>
     156      <docsystem/>
     157      <docurl/>
     158      <usermanualurl/>
    162159    </projectdoc>
    163160  </kdevdocumentation>
  • trunk/src/Makefile.am

    r5141 r5160  
    1818                       lib/collision_detection/libORXcd.a \
    1919                       lib/graphics/spatial_separation/libORXquadtree.a \
    20                        lib/tinyxml/libtinyxml.a
     20                       lib/tinyxml/libtinyxml.a \
     21                       lib/shell/libORXshell.a
    2122
    2223orxonox_LDADD = lib/gui/libORXgui.a \
     
    2930                lib/graphics/spatial_separation/libORXquadtree.a \
    3031                lib/tinyxml/libtinyxml.a \
     32                lib/shell/libORXshell.a \
    3133                $(GTK2_LIBS) $(GTHREAD_LIBS) $(CURL_LIBS)
    3234
    3335
    3436orxonox_SOURCES = orxonox.cc \
    35                   util/shell.cc \
    36                   util/shell_command.cc \
    3737                  util/loading/game_loader.cc \
    3838                  util/track/track_manager.cc \
     
    102102                 util/garbage_collector.h \
    103103                 util/state.h \
    104                  util/shell.h \
    105                  util/shell_command.h \
    106104                 util/user_control.h \
    107105                 util/resource_manager.h \
  • trunk/src/Makefile.in

    r5141 r5160  
    5353binPROGRAMS_INSTALL = $(INSTALL_PROGRAM)
    5454PROGRAMS = $(bin_PROGRAMS)
    55 am_orxonox_OBJECTS = orxonox-orxonox.$(OBJEXT) orxonox-shell.$(OBJEXT) \
    56         orxonox-shell_command.$(OBJEXT) orxonox-game_loader.$(OBJEXT) \
    57         orxonox-track_manager.$(OBJEXT) orxonox-track_node.$(OBJEXT) \
    58         orxonox-pilot_node.$(OBJEXT) orxonox-animation.$(OBJEXT) \
    59         orxonox-animation3d.$(OBJEXT) \
     55am_orxonox_OBJECTS = orxonox-orxonox.$(OBJEXT) \
     56        orxonox-game_loader.$(OBJEXT) orxonox-track_manager.$(OBJEXT) \
     57        orxonox-track_node.$(OBJEXT) orxonox-pilot_node.$(OBJEXT) \
     58        orxonox-animation.$(OBJEXT) orxonox-animation3d.$(OBJEXT) \
    6059        orxonox-animation_player.$(OBJEXT) \
    6160        orxonox-fast_factory.$(OBJEXT) \
     
    123122@AMDEP_TRUE@    ./$(DEPDIR)/orxonox-resource_manager.Po \
    124123@AMDEP_TRUE@    ./$(DEPDIR)/orxonox-satellite.Po \
    125 @AMDEP_TRUE@    ./$(DEPDIR)/orxonox-shell.Po \
    126 @AMDEP_TRUE@    ./$(DEPDIR)/orxonox-shell_command.Po \
    127124@AMDEP_TRUE@    ./$(DEPDIR)/orxonox-skybox.Po \
    128125@AMDEP_TRUE@    ./$(DEPDIR)/orxonox-skysphere.Po \
     
    280277                       lib/collision_detection/libORXcd.a \
    281278                       lib/graphics/spatial_separation/libORXquadtree.a \
    282                        lib/tinyxml/libtinyxml.a
     279                       lib/tinyxml/libtinyxml.a \
     280                       lib/shell/libORXshell.a
    283281
    284282orxonox_LDADD = lib/gui/libORXgui.a \
     
    291289                lib/graphics/spatial_separation/libORXquadtree.a \
    292290                lib/tinyxml/libtinyxml.a \
     291                lib/shell/libORXshell.a \
    293292                $(GTK2_LIBS) $(GTHREAD_LIBS) $(CURL_LIBS)
    294293
    295294orxonox_SOURCES = orxonox.cc \
    296                   util/shell.cc \
    297                   util/shell_command.cc \
    298295                  util/loading/game_loader.cc \
    299296                  util/track/track_manager.cc \
     
    363360                 util/garbage_collector.h \
    364361                 util/state.h \
    365                  util/shell.h \
    366                  util/shell_command.h \
    367362                 util/user_control.h \
    368363                 util/resource_manager.h \
     
    449444          esac; \
    450445        done; \
    451         echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  src/Makefile'; \
     446        echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign  src/Makefile'; \
    452447        cd $(top_srcdir) && \
    453           $(AUTOMAKE) --gnu  src/Makefile
     448          $(AUTOMAKE) --foreign  src/Makefile
    454449.PRECIOUS: Makefile
    455450Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
     
    536531@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/orxonox-resource_manager.Po@am__quote@
    537532@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/orxonox-satellite.Po@am__quote@
    538 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/orxonox-shell.Po@am__quote@
    539 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/orxonox-shell_command.Po@am__quote@
    540533@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/orxonox-skybox.Po@am__quote@
    541534@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/orxonox-skysphere.Po@am__quote@
     
    589582@AMDEP_TRUE@@am__fastdepCXX_FALSE@      $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
    590583@am__fastdepCXX_FALSE@  $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(orxonox_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o orxonox-orxonox.obj `if test -f 'orxonox.cc'; then $(CYGPATH_W) 'orxonox.cc'; else $(CYGPATH_W) '$(srcdir)/orxonox.cc'; fi`
    591 
    592 orxonox-shell.o: util/shell.cc
    593 @am__fastdepCXX_TRUE@   if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(orxonox_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT orxonox-shell.o -MD -MP -MF "$(DEPDIR)/orxonox-shell.Tpo" -c -o orxonox-shell.o `test -f 'util/shell.cc' || echo '$(srcdir)/'`util/shell.cc; \
    594 @am__fastdepCXX_TRUE@   then mv -f "$(DEPDIR)/orxonox-shell.Tpo" "$(DEPDIR)/orxonox-shell.Po"; else rm -f "$(DEPDIR)/orxonox-shell.Tpo"; exit 1; fi
    595 @AMDEP_TRUE@@am__fastdepCXX_FALSE@      source='util/shell.cc' object='orxonox-shell.o' libtool=no @AMDEPBACKSLASH@
    596 @AMDEP_TRUE@@am__fastdepCXX_FALSE@      depfile='$(DEPDIR)/orxonox-shell.Po' tmpdepfile='$(DEPDIR)/orxonox-shell.TPo' @AMDEPBACKSLASH@
    597 @AMDEP_TRUE@@am__fastdepCXX_FALSE@      $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
    598 @am__fastdepCXX_FALSE@  $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(orxonox_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o orxonox-shell.o `test -f 'util/shell.cc' || echo '$(srcdir)/'`util/shell.cc
    599 
    600 orxonox-shell.obj: util/shell.cc
    601 @am__fastdepCXX_TRUE@   if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(orxonox_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT orxonox-shell.obj -MD -MP -MF "$(DEPDIR)/orxonox-shell.Tpo" -c -o orxonox-shell.obj `if test -f 'util/shell.cc'; then $(CYGPATH_W) 'util/shell.cc'; else $(CYGPATH_W) '$(srcdir)/util/shell.cc'; fi`; \
    602 @am__fastdepCXX_TRUE@   then mv -f "$(DEPDIR)/orxonox-shell.Tpo" "$(DEPDIR)/orxonox-shell.Po"; else rm -f "$(DEPDIR)/orxonox-shell.Tpo"; exit 1; fi
    603 @AMDEP_TRUE@@am__fastdepCXX_FALSE@      source='util/shell.cc' object='orxonox-shell.obj' libtool=no @AMDEPBACKSLASH@
    604 @AMDEP_TRUE@@am__fastdepCXX_FALSE@      depfile='$(DEPDIR)/orxonox-shell.Po' tmpdepfile='$(DEPDIR)/orxonox-shell.TPo' @AMDEPBACKSLASH@
    605 @AMDEP_TRUE@@am__fastdepCXX_FALSE@      $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
    606 @am__fastdepCXX_FALSE@  $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(orxonox_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o orxonox-shell.obj `if test -f 'util/shell.cc'; then $(CYGPATH_W) 'util/shell.cc'; else $(CYGPATH_W) '$(srcdir)/util/shell.cc'; fi`
    607 
    608 orxonox-shell_command.o: util/shell_command.cc
    609 @am__fastdepCXX_TRUE@   if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(orxonox_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT orxonox-shell_command.o -MD -MP -MF "$(DEPDIR)/orxonox-shell_command.Tpo" -c -o orxonox-shell_command.o `test -f 'util/shell_command.cc' || echo '$(srcdir)/'`util/shell_command.cc; \
    610 @am__fastdepCXX_TRUE@   then mv -f "$(DEPDIR)/orxonox-shell_command.Tpo" "$(DEPDIR)/orxonox-shell_command.Po"; else rm -f "$(DEPDIR)/orxonox-shell_command.Tpo"; exit 1; fi
    611 @AMDEP_TRUE@@am__fastdepCXX_FALSE@      source='util/shell_command.cc' object='orxonox-shell_command.o' libtool=no @AMDEPBACKSLASH@
    612 @AMDEP_TRUE@@am__fastdepCXX_FALSE@      depfile='$(DEPDIR)/orxonox-shell_command.Po' tmpdepfile='$(DEPDIR)/orxonox-shell_command.TPo' @AMDEPBACKSLASH@
    613 @AMDEP_TRUE@@am__fastdepCXX_FALSE@      $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
    614 @am__fastdepCXX_FALSE@  $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(orxonox_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o orxonox-shell_command.o `test -f 'util/shell_command.cc' || echo '$(srcdir)/'`util/shell_command.cc
    615 
    616 orxonox-shell_command.obj: util/shell_command.cc
    617 @am__fastdepCXX_TRUE@   if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(orxonox_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT orxonox-shell_command.obj -MD -MP -MF "$(DEPDIR)/orxonox-shell_command.Tpo" -c -o orxonox-shell_command.obj `if test -f 'util/shell_command.cc'; then $(CYGPATH_W) 'util/shell_command.cc'; else $(CYGPATH_W) '$(srcdir)/util/shell_command.cc'; fi`; \
    618 @am__fastdepCXX_TRUE@   then mv -f "$(DEPDIR)/orxonox-shell_command.Tpo" "$(DEPDIR)/orxonox-shell_command.Po"; else rm -f "$(DEPDIR)/orxonox-shell_command.Tpo"; exit 1; fi
    619 @AMDEP_TRUE@@am__fastdepCXX_FALSE@      source='util/shell_command.cc' object='orxonox-shell_command.obj' libtool=no @AMDEPBACKSLASH@
    620 @AMDEP_TRUE@@am__fastdepCXX_FALSE@      depfile='$(DEPDIR)/orxonox-shell_command.Po' tmpdepfile='$(DEPDIR)/orxonox-shell_command.TPo' @AMDEPBACKSLASH@
    621 @AMDEP_TRUE@@am__fastdepCXX_FALSE@      $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
    622 @am__fastdepCXX_FALSE@  $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(orxonox_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o orxonox-shell_command.obj `if test -f 'util/shell_command.cc'; then $(CYGPATH_W) 'util/shell_command.cc'; else $(CYGPATH_W) '$(srcdir)/util/shell_command.cc'; fi`
    623584
    624585orxonox-game_loader.o: util/loading/game_loader.cc
  • trunk/src/defs/include_paths.am

    r4849 r5160  
    1414AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib/gui
    1515AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib/lang
     16AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib/shell
    1617AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib/util
    1718AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib/math
  • trunk/src/lib/Makefile.am

    r4643 r5160  
    99          collision_detection \
    1010          tinyxml \
     11          shell \
    1112          gui \
    1213          $(GTK_PROGS)
  • trunk/src/lib/Makefile.in

    r5100 r5160  
    174174          collision_detection \
    175175          tinyxml \
     176          shell \
    176177          gui \
    177178          $(GTK_PROGS)
     
    189190          esac; \
    190191        done; \
    191         echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  src/lib/Makefile'; \
     192        echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign  src/lib/Makefile'; \
    192193        cd $(top_srcdir) && \
    193           $(AUTOMAKE) --gnu  src/lib/Makefile
     194          $(AUTOMAKE) --foreign  src/lib/Makefile
    194195.PRECIOUS: Makefile
    195196Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
  • trunk/src/lib/collision_detection/Makefile.in

    r5100 r5160  
    224224          esac; \
    225225        done; \
    226         echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  src/lib/collision_detection/Makefile'; \
     226        echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign  src/lib/collision_detection/Makefile'; \
    227227        cd $(top_srcdir) && \
    228           $(AUTOMAKE) --gnu  src/lib/collision_detection/Makefile
     228          $(AUTOMAKE) --foreign  src/lib/collision_detection/Makefile
    229229.PRECIOUS: Makefile
    230230Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
  • trunk/src/lib/event/Makefile.in

    r5100 r5160  
    212212          esac; \
    213213        done; \
    214         echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  src/lib/event/Makefile'; \
     214        echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign  src/lib/event/Makefile'; \
    215215        cd $(top_srcdir) && \
    216           $(AUTOMAKE) --gnu  src/lib/event/Makefile
     216          $(AUTOMAKE) --foreign  src/lib/event/Makefile
    217217.PRECIOUS: Makefile
    218218Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
  • trunk/src/lib/graphics/Makefile.in

    r5100 r5160  
    179179          esac; \
    180180        done; \
    181         echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  src/lib/graphics/Makefile'; \
     181        echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign  src/lib/graphics/Makefile'; \
    182182        cd $(top_srcdir) && \
    183           $(AUTOMAKE) --gnu  src/lib/graphics/Makefile
     183          $(AUTOMAKE) --foreign  src/lib/graphics/Makefile
    184184.PRECIOUS: Makefile
    185185Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
  • trunk/src/lib/graphics/importer/Makefile.in

    r5100 r5160  
    217217          esac; \
    218218        done; \
    219         echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  src/lib/graphics/importer/Makefile'; \
     219        echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign  src/lib/graphics/importer/Makefile'; \
    220220        cd $(top_srcdir) && \
    221           $(AUTOMAKE) --gnu  src/lib/graphics/importer/Makefile
     221          $(AUTOMAKE) --foreign  src/lib/graphics/importer/Makefile
    222222.PRECIOUS: Makefile
    223223Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
  • trunk/src/lib/graphics/spatial_separation/Makefile.in

    r5100 r5160  
    205205          esac; \
    206206        done; \
    207         echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  src/lib/graphics/spatial_separation/Makefile'; \
     207        echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign  src/lib/graphics/spatial_separation/Makefile'; \
    208208        cd $(top_srcdir) && \
    209           $(AUTOMAKE) --gnu  src/lib/graphics/spatial_separation/Makefile
     209          $(AUTOMAKE) --foreign  src/lib/graphics/spatial_separation/Makefile
    210210.PRECIOUS: Makefile
    211211Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
  • trunk/src/lib/gui/Makefile.in

    r5100 r5160  
    241241          esac; \
    242242        done; \
    243         echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  src/lib/gui/Makefile'; \
     243        echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign  src/lib/gui/Makefile'; \
    244244        cd $(top_srcdir) && \
    245           $(AUTOMAKE) --gnu  src/lib/gui/Makefile
     245          $(AUTOMAKE) --foreign  src/lib/gui/Makefile
    246246.PRECIOUS: Makefile
    247247Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
  • trunk/src/lib/particles/Makefile.in

    r5100 r5160  
    209209          esac; \
    210210        done; \
    211         echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  src/lib/particles/Makefile'; \
     211        echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign  src/lib/particles/Makefile'; \
    212212        cd $(top_srcdir) && \
    213           $(AUTOMAKE) --gnu  src/lib/particles/Makefile
     213          $(AUTOMAKE) --foreign  src/lib/particles/Makefile
    214214.PRECIOUS: Makefile
    215215Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
  • trunk/src/lib/physics/Makefile.in

    r5100 r5160  
    218218          esac; \
    219219        done; \
    220         echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  src/lib/physics/Makefile'; \
     220        echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign  src/lib/physics/Makefile'; \
    221221        cd $(top_srcdir) && \
    222           $(AUTOMAKE) --gnu  src/lib/physics/Makefile
     222          $(AUTOMAKE) --foreign  src/lib/physics/Makefile
    223223.PRECIOUS: Makefile
    224224Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
  • trunk/src/lib/shell/Makefile.am

    r5157 r5160  
    22include $(MAINSRCDIR)/defs/include_paths.am
    33
    4 noinst_LIBRARIES = libORXparticles.a
     4noinst_LIBRARIES = libORXshell.a
    55
    6 libORXparticles_a_SOURCES = particle_engine.cc \
    7                             particle_emitter.cc \
    8                             particle_system.cc \
    9                             quick_animation.cc
     6libORXshell_a_SOURCES = shell.cc \
     7                        shell_command.cc
    108
    119
    12 noinst_HEADERS= particle_engine.h \
    13                 particle_emitter.h \
    14                 particle_system.h \
    15                 quick_animation.h
     10noinst_HEADERS= shell.h \
     11                shell_command.h
  • trunk/src/lib/shell/Makefile.in

    r5157 r5160  
    1616
    1717
    18 SOURCES = $(libORXparticles_a_SOURCES)
     18SOURCES = $(libORXshell_a_SOURCES)
    1919
    2020srcdir = @srcdir@
     
    3939POST_UNINSTALL = :
    4040host_triplet = @host@
    41 subdir = src/lib/particles
     41subdir = src/lib/shell
    4242DIST_COMMON = $(noinst_HEADERS) $(srcdir)/Makefile.am \
    4343        $(srcdir)/Makefile.in
     
    5252AR = ar
    5353ARFLAGS = cru
    54 libORXparticles_a_AR = $(AR) $(ARFLAGS)
    55 libORXparticles_a_LIBADD =
    56 am_libORXparticles_a_OBJECTS = particle_engine.$(OBJEXT) \
    57         particle_emitter.$(OBJEXT) particle_system.$(OBJEXT) \
    58         quick_animation.$(OBJEXT)
    59 libORXparticles_a_OBJECTS = $(am_libORXparticles_a_OBJECTS)
     54libORXshell_a_AR = $(AR) $(ARFLAGS)
     55libORXshell_a_LIBADD =
     56am_libORXshell_a_OBJECTS = shell.$(OBJEXT) shell_command.$(OBJEXT)
     57libORXshell_a_OBJECTS = $(am_libORXshell_a_OBJECTS)
    6058DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)
    6159depcomp = $(SHELL) $(top_srcdir)/depcomp
    6260am__depfiles_maybe = depfiles
    63 @AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/particle_emitter.Po \
    64 @AMDEP_TRUE@    ./$(DEPDIR)/particle_engine.Po \
    65 @AMDEP_TRUE@    ./$(DEPDIR)/particle_system.Po \
    66 @AMDEP_TRUE@    ./$(DEPDIR)/quick_animation.Po
     61@AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/shell.Po \
     62@AMDEP_TRUE@    ./$(DEPDIR)/shell_command.Po
    6763CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
    6864        $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
     
    7066CXXLINK = $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) \
    7167        -o $@
    72 SOURCES = $(libORXparticles_a_SOURCES)
    73 DIST_SOURCES = $(libORXparticles_a_SOURCES)
     68SOURCES = $(libORXshell_a_SOURCES)
     69DIST_SOURCES = $(libORXshell_a_SOURCES)
    7470HEADERS = $(noinst_HEADERS)
    7571ETAGS = etags
     
    185181target_vendor = @target_vendor@
    186182MAINSRCDIR = ../..
    187 noinst_LIBRARIES = libORXparticles.a
    188 libORXparticles_a_SOURCES = particle_engine.cc \
    189                             particle_emitter.cc \
    190                             particle_system.cc \
    191                             quick_animation.cc
    192 
    193 noinst_HEADERS = particle_engine.h \
    194                 particle_emitter.h \
    195                 particle_system.h \
    196                 quick_animation.h
     183noinst_LIBRARIES = libORXshell.a
     184libORXshell_a_SOURCES = shell.cc \
     185                        shell_command.cc
     186
     187noinst_HEADERS = shell.h \
     188                shell_command.h
    197189
    198190all: all-am
     
    209201          esac; \
    210202        done; \
    211         echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  src/lib/particles/Makefile'; \
     203        echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign  src/lib/shell/Makefile'; \
    212204        cd $(top_srcdir) && \
    213           $(AUTOMAKE) --gnu  src/lib/particles/Makefile
     205          $(AUTOMAKE) --foreign  src/lib/shell/Makefile
    214206.PRECIOUS: Makefile
    215207Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
     
    232224clean-noinstLIBRARIES:
    233225        -test -z "$(noinst_LIBRARIES)" || rm -f $(noinst_LIBRARIES)
    234 libORXparticles.a: $(libORXparticles_a_OBJECTS) $(libORXparticles_a_DEPENDENCIES)
    235         -rm -f libORXparticles.a
    236         $(libORXparticles_a_AR) libORXparticles.a $(libORXparticles_a_OBJECTS) $(libORXparticles_a_LIBADD)
    237         $(RANLIB) libORXparticles.a
     226libORXshell.a: $(libORXshell_a_OBJECTS) $(libORXshell_a_DEPENDENCIES)
     227        -rm -f libORXshell.a
     228        $(libORXshell_a_AR) libORXshell.a $(libORXshell_a_OBJECTS) $(libORXshell_a_LIBADD)
     229        $(RANLIB) libORXshell.a
    238230
    239231mostlyclean-compile:
     
    243235        -rm -f *.tab.c
    244236
    245 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/particle_emitter.Po@am__quote@
    246 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/particle_engine.Po@am__quote@
    247 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/particle_system.Po@am__quote@
    248 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/quick_animation.Po@am__quote@
     237@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/shell.Po@am__quote@
     238@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/shell_command.Po@am__quote@
    249239
    250240.cc.o:
  • trunk/src/lib/shell/shell.cc

    r5159 r5160  
    396396 * @todo
    397397 */
    398 void Shell::moveBuffer(int lineCount)
     398void Shell::moveBuffer(unsigned int lineCount)
    399399{
    400400}
  • trunk/src/lib/sound/Makefile.in

    r5100 r5160  
    201201          esac; \
    202202        done; \
    203         echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  src/lib/sound/Makefile'; \
     203        echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign  src/lib/sound/Makefile'; \
    204204        cd $(top_srcdir) && \
    205           $(AUTOMAKE) --gnu  src/lib/sound/Makefile
     205          $(AUTOMAKE) --foreign  src/lib/sound/Makefile
    206206.PRECIOUS: Makefile
    207207Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
  • trunk/src/lib/tinyxml/Makefile.in

    r5100 r5160  
    204204          esac; \
    205205        done; \
    206         echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  src/lib/tinyxml/Makefile'; \
     206        echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign  src/lib/tinyxml/Makefile'; \
    207207        cd $(top_srcdir) && \
    208           $(AUTOMAKE) --gnu  src/lib/tinyxml/Makefile
     208          $(AUTOMAKE) --foreign  src/lib/tinyxml/Makefile
    209209.PRECIOUS: Makefile
    210210Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
  • trunk/src/subprojects/Makefile.in

    r5100 r5160  
    186186          esac; \
    187187        done; \
    188         echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  src/subprojects/Makefile'; \
     188        echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign  src/subprojects/Makefile'; \
    189189        cd $(top_srcdir) && \
    190           $(AUTOMAKE) --gnu  src/subprojects/Makefile
     190          $(AUTOMAKE) --foreign  src/subprojects/Makefile
    191191.PRECIOUS: Makefile
    192192Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
  • trunk/src/subprojects/collision_detection/Makefile.in

    r5100 r5160  
    281281          esac; \
    282282        done; \
    283         echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  src/subprojects/collision_detection/Makefile'; \
     283        echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign  src/subprojects/collision_detection/Makefile'; \
    284284        cd $(top_srcdir) && \
    285           $(AUTOMAKE) --gnu  src/subprojects/collision_detection/Makefile
     285          $(AUTOMAKE) --foreign  src/subprojects/collision_detection/Makefile
    286286.PRECIOUS: Makefile
    287287Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
  • trunk/src/subprojects/importer/Makefile.in

    r5100 r5160  
    250250          esac; \
    251251        done; \
    252         echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  src/subprojects/importer/Makefile'; \
     252        echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign  src/subprojects/importer/Makefile'; \
    253253        cd $(top_srcdir) && \
    254           $(AUTOMAKE) --gnu  src/subprojects/importer/Makefile
     254          $(AUTOMAKE) --foreign  src/subprojects/importer/Makefile
    255255.PRECIOUS: Makefile
    256256Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
  • trunk/src/subprojects/particles/Makefile.in

    r5100 r5160  
    267267          esac; \
    268268        done; \
    269         echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  src/subprojects/particles/Makefile'; \
     269        echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign  src/subprojects/particles/Makefile'; \
    270270        cd $(top_srcdir) && \
    271           $(AUTOMAKE) --gnu  src/subprojects/particles/Makefile
     271          $(AUTOMAKE) --foreign  src/subprojects/particles/Makefile
    272272.PRECIOUS: Makefile
    273273Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
  • trunk/src/subprojects/testmain/Makefile.in

    r5100 r5160  
    196196          esac; \
    197197        done; \
    198         echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  src/subprojects/testmain/Makefile'; \
     198        echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign  src/subprojects/testmain/Makefile'; \
    199199        cd $(top_srcdir) && \
    200           $(AUTOMAKE) --gnu  src/subprojects/testmain/Makefile
     200          $(AUTOMAKE) --foreign  src/subprojects/testmain/Makefile
    201201.PRECIOUS: Makefile
    202202Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
Note: See TracChangeset for help on using the changeset viewer.