- Timestamp:
- Feb 16, 2006, 2:54:15 PM (19 years ago)
- Location:
- trunk/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/subprojects/importer/Makefile.am
r7151 r7155 16 16 17 17 importer_DEPENDECIES = \ 18 $(MAINSRCDIR)/util/libORXutils.a \ 19 $(libORXlibs_a_LIBRARIES_) 18 $(MAINSRCDIR)/world_entities/libORXwe.a \ 19 $(libORXlibs_a_LIBRARIES_) \ 20 $(MAINSRCDIR)/util/libORXutils.a 20 21 21 22 importer_LDADD = \ 22 23 $(MAINSRCDIR)/util/libORXutils.a \ 23 $(libORXlibs_a_LIBRARIES_) 24 $(libORXlibs_a_LIBRARIES_) \ 25 $(MAINSRCDIR)/world_entities/libORXwe.a \ 26 $(libORXlibs_a_LIBRARIES_) \ 27 $(MAINSRCDIR)/util/libORXutils.a 24 28 25 29 importer_SOURCES= \ 26 30 ../framework.cc \ 27 31 importer.cc \ 28 $(MAINSRCDIR)/world_entities/camera.cc 32 $(MAINSRCDIR)/world_entities/space_ships/space_ship.cc \ 33 $(MAINSRCDIR)/world_entities/weapons/test_gun.cc 29 34 30 35 -
trunk/src/world_entities/Makefile.am
r7154 r7155 16 16 \ 17 17 weapons/weapon_manager.cc \ 18 weapons/crosshair.cc \ 18 19 weapons/weapon.cc \ 19 20 weapons/ammo_container.cc \ … … 21 22 \ 22 23 power_ups/power_up.cc \ 24 power_ups/param_power_up.cc \ 25 power_ups/weapon_power_up.cc \ 23 26 \ 24 spawning_point.cc 27 spawning_point.cc \ 28 \ 29 \ 30 effects/explosion.cc 31 25 32 26 33 … … 36 43 \ 37 44 weapons/weapon_manager.h \ 45 weapons/crosshair.h \ 38 46 weapons/weapon.h \ 39 47 weapons/ammo_container.h \ … … 41 49 \ 42 50 power_ups/power_up.h \ 51 power_ups/param_power_up.h \ 52 power_ups/weapon_power_up.h \ 43 53 \ 44 54 spawning_point.h \ 45 55 \ 56 \ 57 effects/explosion.h \ 46 58 \ 47 59 $(WorldEntities_HEADERS_) -
trunk/src/world_entities/WorldEntities.am
r7154 r7155 22 22 world_entities/weapons/hyperblaster.cc \ 23 23 world_entities/weapons/aim.cc \ 24 world_entities/weapons/crosshair.cc \25 24 \ 26 25 world_entities/projectiles/bomb.cc \ … … 33 32 world_entities/power_ups/turret_power_up.cc \ 34 33 world_entities/power_ups/laser_power_up.cc \ 35 world_entities/power_ups/weapon_power_up.cc \36 world_entities/power_ups/param_power_up.cc \37 34 \ 38 35 world_entities/space_ships/space_ship.cc \ … … 50 47 world_entities/elements/text_element.cc \ 51 48 \ 52 world_entities/effects/explosion.cc \53 49 world_entities/effects/lightning_bolt.cc 54 50 … … 76 72 weapons/targeting_turret.h \ 77 73 weapons/aim.h \ 78 weapons/crosshair.h \79 74 \ 80 75 projectiles/bomb.h \ … … 87 82 power_ups/turret_power_up.h \ 88 83 power_ups/laser_power_up.h \ 89 power_ups/param_power_up.h \90 power_ups/weapon_power_up.h \91 84 \ 92 85 space_ships/space_ship.h \ … … 103 96 elements/text_element.h \ 104 97 \ 105 effects/explosion.h \106 98 effects/lightning_bolt.h
Note: See TracChangeset
for help on using the changeset viewer.