Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 5355 in orxonox.OLD for trunk/src/world_entities/Makefile.am


Ignore:
Timestamp:
Oct 10, 2005, 7:47:42 PM (19 years ago)
Author:
bensch
Message:

orxonox/trunk: some build-efficiency-issues

File:
1 copied

Legend:

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

    r5352 r5355  
    22include $(MAINSRCDIR)/defs/include_paths.am
    33
    4 noinst_LIBRARIES = libORXlibs.a
     4noinst_LIBRARIES = libORXworld_entities.a
    55
    6 #libORXlibs_a_DEPENDENCIES = gui/gtk_gui/libORXgui.a \
    7                             gui/gl_gui/libORXglgui.a \
    8                             graphics/importer/libORXimporter.a \
    9                             graphics/libORXgraphics.a \
    10                             sound/libORXsound.a \
    11                             event/libORXevent.a \
    12                             physics/libORXphysics.a \
    13                             particles/libORXparticles.a \
    14                             collision_detection/libORXcd.a \
    15                             graphics/spatial_separation/libORXquadtree.a \
    16                             tinyxml/libtinyxml.a \
    17                             shell/libORXshell.a
     6libORXworld_entities_a_SOURCES = \
     7                  world_entity.cc \
     8                  camera.cc \
     9                  player.cc \
     10                  npc.cc \
     11                  npc2.cc \
     12                  environment.cc \
     13                  skysphere.cc \
     14                  skybox.cc \
     15                  terrain.cc \
     16                  satellite.cc \
     17                  character_attributes.cc \
     18                  test_entity.cc \
     19                  weapons/weapon_manager.cc \
     20                  weapons/weapon.cc \
     21                  weapons/projectile.cc \
     22                  weapons/test_gun.cc \
     23                  weapons/turret.cc \
     24                  weapons/test_bullet.cc \
     25                  weapons/crosshair.cc
    1826
    19 #libORXlibs_a_LIBDADD =      gui/gtk_gui/libORXgui.a \
    20                             gui/gl_gui/libORXglgui.a \
    21                             graphics/importer/libORXimporter.a \
    22                             graphics/libORXgraphics.a \
    23                             sound/libORXsound.a \
    24                             event/libORXevent.a \
    25                             physics/libORXphysics.a \
    26                             particles/libORXparticles.a \
    27                             collision_detection/libORXcd.a \
    28                             graphics/spatial_separation/libORXquadtree.a \
    29                             tinyxml/libtinyxml.a \
    30                             shell/libORXshell.a \
    31                             $(GTK2_LIBS) $(GTHREAD_LIBS) $(CURL_LIBS)
     27noinst_HEADERS = \
     28                 world_entity.h \
     29                 camera.h \
     30                 player.h \
     31                 npc.h \
     32                 npc2.h \
     33                 environment.h \
     34                 skysphere.h \
     35                 skybox.h \
     36                 power_up.h \
     37                 terrain.h \
     38                 satellite.h \
     39                 character_attributes.h \
     40                 test_entity.h \
     41                 weapons/weapon_manager.h \
     42                 weapons/weapon.h \
     43                 weapons/projectile.h \
     44                 weapons/test_gun.h \
     45                 weapons/turret.h \
     46                 weapons/test_bullet.h \
     47                 weapons/crosshair.h
    3248
    33 libORXlibs_a_SOURCES =  coord/p_node.cc \
    34                         coord/null_parent.cc \
    35                         lang/base_object.cc \
    36                         lang/class_list.cc \
    37                         util/ini_parser.cc \
    38                         util/substring.cc \
    39                         util/color.cc \
    40                         util/helper_functions.cc \
    41                         math/vector.cc \
    42                         math/curve.cc
    4349
    44 noinst_HEADERS =        coord/p_node.h \
    45                         coord/null_parent.h \
    46                         lang/base_object.h \
    47                         graphics/render2D/element_2d.h \
    48                         graphics/render2D/render_2d.h \
    49                         lang/class_list.h \
    50                         util/ini_parser.h \
    51                         util/substring.h \
    52                         util/array.h \
    53                         util/list.h \
    54                         util/color.h \
    55                         util/helper_functions.h \
    56                         math/vector.h \
    57                         math/curve.h
    58 
    59 SUBDIRS = graphics \
    60           sound \
    61           event \
    62           physics \
    63           particles \
    64           collision_detection \
    65           tinyxml \
    66           shell \
    67           gui \
    68           .
    69 
     50SUBDIRS = .          .
Note: See TracChangeset for help on using the changeset viewer.