Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 3499 in orxonox.OLD for orxonox/branches/levelloader/src/Makefile.am


Ignore:
Timestamp:
Mar 11, 2005, 2:55:27 PM (19 years ago)
Author:
chris
Message:

orxonox/branches/levelloader: merged updated trunk structure into levelloader branch

File:
1 edited

Legend:

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

    r3396 r3499  
    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                  track.cc \
    21                  base_entity.cc \
    22                  game_loader.cc \
    23                  campaign.cc \
    24                  story_entity.cc \
    25                  environment.cc \
    26                  importer/model.cc \
    27                  importer/objModel.cc \
    28                  importer/array.cc \
    29                  importer/material.cc \
    30                  importer/texture.cc \
    31                  list.cc \
    32                  p_node.cc \
    33                  null_parent.cc \
    34                  base_object.cc \
    35                  helper_parent.cc \
    3634                 track_manager.cc \
    37                  matrix.cc \
    38                  curve.cc \
    39                  glmenu_imagescreen.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
    4062
    41 
    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 \
    54                  track.h \
     63noinst_HEADERS = orxonox.h \
     64                 game_loader.h \
     65                 track_manager.h \
     66                 ability.h \
    5567                 camera.h \
    56                  ini_parser.h \
    57                  power_up.h \
    58                  vector.h \
    5968                 keynames.h \
    6069                 proto_class.h \
    61                  world.h \
    6270                 command_node.h \
    63                  list.h \
    64                  shoot_laser.h \
    65                  world_entity.h \
    6671                 message_structures.h \
    67                  shoot_rocket.h \
    68                  list_template.h \
    69                  story_entity.h \
    70                  story_def.h \
    71                  game_loader.h \
    72                  campaign.h \
    73                  p_node.h \
    74                  null_parent.h \
    75                  base_object.h \
    76                  helper_parent.h \
    77                  track_manager.h \
    78                  matrix.h \
    79                  curve.h \
    80                  glmenu_imagescreen.h \
    81                  debug.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
    82105
    83106
     
    85108EXTRA_DIST = orxonox.conf
    86109
    87 ### GTK_RELATED
    88 if HAVE_GTK2
    89   GTK_PROGS =console
    90 else
    91   GTK_PROGS =
    92 endif
    93110if SUB_PROJECTS
    94   SUB_PROGS = importer \
    95               gui \
    96               $(GTK_PROGS)
     111  SUB_PROGS = lib
    97112else
    98113  SUB_PROGS =
Note: See TracChangeset for help on using the changeset viewer.