Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Mar 11, 2005, 11:59:58 AM (19 years ago)
Author:
bensch
Message:

orxonox/branches/trackManager: merged trunk back to tracManager R3440:3497 → 3498
merged with command:
svn merge ../trunk/ trackManager/ -r 3430:HEAD
conflicts resolved in favor of the Trunk

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/branches/trackManager/src/Makefile.am

    r3463 r3498  
    1 #AM_CXXFLAGS=""
     1MAINSRCDIR=.
     2AM_CXXFLAGS=-I$(MAINSRCDIR)
     3AM_CXXFLAGS+=-I$(MAINSRCDIR)/world_entities
     4AM_CXXFLAGS+=-I$(MAINSRCDIR)/story_entities
     5AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib
     6AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib/coord
     7AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib/data
     8AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib/gaphics
     9AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib/graphics/font
     10AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib/graphics/importer
     11AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib/gui
     12AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib/lang
     13AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib/util
     14AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib/math
     15AM_CXXFLAGS+=-I$(MAINSRCDIR)/defs
     16AM_CXXFLAGS+=-I$(MAINSRCDIR)/font
     17AM_CXXFLAGS+=-I$(MAINSRCDIR)/network
     18AM_CXXFLAGS+=-I$(MAINSRCDIR)/glmenu
     19AM_CXXFLAGS+=-I$(MAINSRCDIR)/ai
     20
     21
    222AM_LDFLAGS= $(MWINDOWS)
    323
     
    828
    929orxonox_SOURCES= orxonox.cc \
    10                  world.cc \
    11                  player.cc \
    12                  collision.cc \
    13                  data_tank.cc \
    14                  world_entity.cc \
    15                  vector.cc \
     30                 game_loader.cc \
     31                 command_node.cc \
     32                 keynames.cc \
    1633                 camera.cc \
    17                  command_node.cc \
    18                  ini_parser.cc \
    19                  keynames.cc \
    20                  base_entity.cc \
    21                  game_loader.cc \
    22                  campaign.cc \
    23                  story_entity.cc \
    24                  environment.cc \
    25                  importer/model.cc \
    26                  importer/objModel.cc \
    27                  importer/array.cc \
    28                  importer/material.cc \
    29                  importer/texture.cc \
    30                  list.cc \
    31                  p_node.cc \
    32                  null_parent.cc \
    33                  track_node.cc \
    34                  base_object.cc \
    35                  helper_parent.cc \
    3634                 track_manager.cc \
    37                  matrix.cc \
    38                  curve.cc \
    39                  glmenu_imagescreen.cc \
    40                  skysphere.cc
     35                 light.cc \
     36                 story_entities/story_entity.cc \
     37                 story_entities/campaign.cc \
     38                 story_entities/world.cc \
     39                 world_entities/world_entity.cc \
     40                 world_entities/player.cc \
     41                 world_entities/environment.cc \
     42                 world_entities/skysphere.cc \
     43                 ai/ai.cc \
     44                 lib/coord/p_node.cc \
     45                 lib/coord/null_parent.cc \
     46                 lib/coord/helper_parent.cc \
     47                 lib/data/data_tank.cc \
     48                 lib/graphics/font/fontset.cc \
     49                 lib/graphics/importer/array.cc \
     50                 lib/graphics/importer/objModel.cc \
     51                 lib/graphics/importer/model.cc \
     52                 lib/graphics/importer/material.cc \
     53                 lib/graphics/importer/texture.cc \
     54                 lib/lang/base_entity.cc \
     55                 lib/lang/base_object.cc \
     56                 lib/util/ini_parser.cc \
     57                 lib/util/list.cc \
     58                 lib/math/vector.cc \
     59                 lib/math/matrix.cc \
     60                 lib/math/curve.cc \
     61                 glmenu/glmenu_imagescreen.cc
    4162
    42 noinst_HEADERS = ability.h \
    43                  data_tank.h \
    44                  collision.h \
    45                  npc.h \
    46                  stdincl.h \
    47                  ai.h \
    48                  environment.h \
    49                  orxonox.h \
    50                  synchronisable.h \
    51                  base_entity.h \
    52                  error.h \
    53                  player.h \
     63noinst_HEADERS = orxonox.h \
     64                 game_loader.h \
     65                 track_manager.h \
     66                 ability.h \
    5467                 camera.h \
    55                  ini_parser.h \
    56                  power_up.h \
    57                  vector.h \
    5868                 keynames.h \
    5969                 proto_class.h \
    60                  world.h \
    6170                 command_node.h \
    62                  list.h \
    63                  shoot_laser.h \
    64                  world_entity.h \
    6571                 message_structures.h \
    66                  shoot_rocket.h \
    67                  list_template.h \
    68                  story_entity.h \
    69                  story_def.h \
    70                  game_loader.h \
    71                  campaign.h \
    72                  p_node.h \
    73                  null_parent.h \
    74                  base_object.h \
    75                  helper_parent.h \
    76                  track_manager.h \
    77                  matrix.h \
    78                  curve.h \
    79                  glmenu_imagescreen.h \
    80                  debug.h \
    81                  skysphere.h
     72                 light.h \
     73                 story_entities/story_entity.h \
     74                 story_entities/story_def.h \
     75                 story_entities/campaign.h \
     76                 story_entities/world.h \
     77                 world_entities/world_entity.h \
     78                 world_entities/player.h \
     79                 world_entities/npc.h \
     80                 world_entities/environment.h \
     81                 world_entities/skysphere.h \
     82                 world_entities/shoot_laser.h \
     83                 world_entities/shoot_rocket.h \
     84                 world_entities/power_up.h \
     85                 ai/ai.h \
     86                 network/synchronisable.h \
     87                 defs/stdincl.h \
     88                 defs/glincl.h \
     89                 defs/error.h \
     90                 defs/debug.h \
     91                 lib/coord/p_node.h \
     92                 lib/coord/null_parent.h \
     93                 lib/coord/helper_parent.h \
     94                 lib/graphics/font/fontset.h \
     95                 lib/data/data_tank.h \
     96                 lib/lang/base_entity.h \
     97                 lib/lang/base_object.h \
     98                 lib/util/list.h \
     99                 lib/util/list_template.h \
     100                 lib/util/ini_parser.h \
     101                 lib/math/vector.h \
     102                 lib/math/matrix.h \
     103                 lib/math/curve.h \
     104                 glmenu/glmenu_imagescreen.h
     105
    82106
    83107## orxonox.conf will be used from home-dir instead.
    84108EXTRA_DIST = orxonox.conf
    85109
    86 ### GTK_RELATED
    87 if HAVE_GTK2
    88   GTK_PROGS =console
    89 else
    90   GTK_PROGS =
    91 endif
    92110if SUB_PROJECTS
    93   SUB_PROGS = importer \
    94               gui \
    95               $(GTK_PROGS)
     111  SUB_PROGS = lib
    96112else
    97113  SUB_PROGS =
Note: See TracChangeset for help on using the changeset viewer.