Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Feb 22, 2006, 12:34:43 AM (18 years ago)
Author:
bensch
Message:

orxonox/dylib: the first level works again, had to fix out the TestGun (it had some bugs, i think)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/shared_lib/src/world_entities/Makefile.am

    r7176 r7177  
    11MAINSRCDIR=..
    22include $(MAINSRCDIR)/defs/include_paths.am
    3 include WorldEntities.am
    43
    54noinst_LIBRARIES = libORXwe.a
    65
    7 pkglib_LTLIBRARIES = libORXground_turret.la
    8 libORXground_turret_la_SOURCES = npcs/ground_turret.cc
    9 
     6## TODO ::
     7WRONG_SORTED_SOURCES_ = space_ships/space_ship.cc
    108
    119
     
    3230                spawning_point.cc \
    3331                \
     32                skybox.cc \
     33                terrain.cc \
    3434                \
    35                 effects/explosion.cc
     35                elements/image_entity.cc \
     36                elements/text_element.cc \
     37                \
     38                effects/explosion.cc \
     39                \
     40                $(WRONG_SORTED_SOURCES_)
    3641
     42LD_FLAGS = --export-dynamic
     43
     44pkglib_LTLIBRARIES = \
     45                libORXnpcs_ground.la \
     46                libORXnpcs_air.la \
     47                libORXenvironmentals.la \
     48                libORXweapons.la \
     49                libORXprojectiles.la \
     50                libORXpower_ups.la \
     51                libORXplayables.la \
     52                libORXmisc_entities.la
     53
     54libORXnpcs_ground_la_SOURCES = \
     55                npcs/ground_turret.cc
     56
     57libORXnpcs_air_la_SOURCES = \
     58                npcs/npc_test1.cc \
     59                npcs/npc_test.cc
     60
     61libORXenvironmentals_la_SOURCES = \
     62                environment.cc \
     63                skysphere.cc \
     64                satellite.cc \
     65                character_attributes.cc \
     66                test_entity.cc \
     67                planet.cc \
     68                environments/water.cc \
     69                environments/model_entity.cc \
     70                environments/building.cc \
     71                \
     72                movie_entity.cc \
     73                recorder.cc
     74
     75libORXweapons_la_SOURCES = \
     76                weapons/turret.cc \
     77                weapons/aiming_turret.cc \
     78                weapons/targeting_turret.cc \
     79                weapons/cannon.cc \
     80                weapons/hyperblaster.cc \
     81                weapons/aim.cc
     82
     83#               weapons/test_gun.cc
     84
     85libORXprojectiles_la_SOURCES = \
     86                projectiles/bomb.cc \
     87                projectiles/laser.cc \
     88                projectiles/test_bullet.cc \
     89                projectiles/rocket.cc \
     90                projectiles/guided_missile.cc \
     91                projectiles/hyperblast.cc
     92
     93libORXpower_ups_la_SOURCES = \
     94                power_ups/turret_power_up.cc \
     95                power_ups/laser_power_up.cc
     96
     97libORXplayables_la_SOURCES = \
     98                space_ships/helicopter.cc \
     99                space_ships/hover.cc \
     100                space_ships/turbine_hover.cc \
     101                creatures/md2_creature.cc
     102
     103libORXmisc_entities_la_SOURCES = \
     104                \
     105                effects/lightning_bolt.cc
    37106
    38107
     
    62131                effects/explosion.h \
    63132                \
    64                 $(WorldEntities_HEADERS_)
     133                \
     134                \
     135                npcs/npc_test.h \
     136                npcs/npc_test1.h \
     137                npcs/ground_turret.h \
     138                environment.h \
     139                skysphere.h \
     140                skybox.h \
     141                terrain.h \
     142                satellite.h \
     143                movie_entity.h \
     144                recorder.h \
     145                character_attributes.h \
     146                test_entity.h \
     147                planet.h \
     148                \
     149                weapons/test_gun.h \
     150                weapons/cannon.h \
     151                weapons/hyperblaster.h \
     152                weapons/turret.h \
     153                weapons/aiming_turret.h \
     154                weapons/targeting_turret.h \
     155                weapons/aim.h \
     156                \
     157                projectiles/bomb.h \
     158                projectiles/laser.h \
     159                projectiles/test_bullet.h \
     160                projectiles/rocket.h \
     161                projectiles/guided_missile.h \
     162                projectiles/hyperblast.h \
     163                \
     164                power_ups/turret_power_up.h \
     165                power_ups/laser_power_up.h \
     166                \
     167                space_ships/space_ship.h \
     168                space_ships/helicopter.h \
     169                space_ships/hover.h \
     170                space_ships/turbine_hover.h \
     171                creatures/md2_creature.h \
     172                \
     173                environments/water.h \
     174                environments/model_entity.h \
     175                environments/building.h \
     176                elements/image_entity.h \
     177                elements/text_element.h \
     178                \
     179                effects/lightning_bolt.h
    65180
    66 
    67 EXTRA_DIST = WorldEntities.am
Note: See TracChangeset for help on using the changeset viewer.