Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/trunk/src/Makefile.am @ 5263

Last change on this file since 5263 was 5263, checked in by bensch, 19 years ago

orxonox/trunk: using glew, and Shaders are now read

File size: 7.5 KB
RevLine 
[3486]1MAINSRCDIR=.
[4428]2include $(MAINSRCDIR)/defs/include_paths.am
[3472]3
[3484]4
[1953]5#"-O3 -pedantic -fPIC -ffast-math -I/usr/X11R6/include"
6
[1955]7
[4556]8bin_PROGRAMS = orxonox
[1953]9
[4725]10orxonox_CPPFLAGS = -DIS_ORXONOX
11
[4428]12orxonox_DEPENDENCIES = lib/gui/libORXgui.a \
[4564]13                       lib/graphics/importer/libORXimporter.a \
[4556]14                       lib/sound/libORXsound.a \
15                       lib/event/libORXevent.a \
16                       lib/physics/libORXphysics.a \
17                       lib/particles/libORXparticles.a \
18                       lib/collision_detection/libORXcd.a \
[4853]19                       lib/graphics/spatial_separation/libORXquadtree.a \
[5160]20                       lib/tinyxml/libtinyxml.a \
21                       lib/shell/libORXshell.a
[4338]22
[4428]23orxonox_LDADD = lib/gui/libORXgui.a \
[4564]24                lib/graphics/importer/libORXimporter.a \
[4556]25                lib/sound/libORXsound.a \
26                lib/event/libORXevent.a \
27                lib/physics/libORXphysics.a \
28                lib/particles/libORXparticles.a \
29                lib/collision_detection/libORXcd.a \
[4843]30                lib/graphics/spatial_separation/libORXquadtree.a \
[4270]31                lib/tinyxml/libtinyxml.a \
[5160]32                lib/shell/libORXshell.a \
[5263]33                $(GTK2_LIBS) $(GTHREAD_LIBS) $(CURL_LIBS) \
34                -lGLEW
[4261]35
[4556]36orxonox_SOURCES = orxonox.cc \
37                  util/loading/game_loader.cc \
38                  util/track/track_manager.cc \
39                  util/track/track_node.cc \
40                  util/track/pilot_node.cc \
41                  util/animation/animation.cc \
42                  util/animation/animation3d.cc \
43                  util/animation/animation_player.cc \
[4940]44                  util/fast_factory.cc \
[4556]45                  util/garbage_collector.cc \
46                  util/resource_manager.cc \
47                  util/loading/factory.cc \
48                  util/loading/load_param.cc \
49                  util/state.cc \
[5040]50                  util/user_control.cc \
[5010]51                  story_entities/story_entity.cc \
[4556]52                  story_entities/campaign.cc \
53                  story_entities/world.cc \
54                  world_entities/world_entity.cc \
55                  world_entities/camera.cc \
56                  world_entities/player.cc \
[4976]57                  world_entities/npc.cc \
[4556]58                  world_entities/environment.cc \
59                  world_entities/skysphere.cc \
60                  world_entities/skybox.cc \
61                  world_entities/terrain.cc \
62                  world_entities/satellite.cc \
63                  world_entities/character_attributes.cc \
64                  world_entities/test_entity.cc \
[4826]65                  world_entities/weapons/weapon_manager.cc \
[4758]66                  world_entities/weapons/weapon.cc \
67                  world_entities/weapons/projectile.cc \
68                  world_entities/weapons/test_gun.cc \
[4963]69                  world_entities/weapons/turret.cc \
[4758]70                  world_entities/weapons/test_bullet.cc \
[4779]71                  world_entities/weapons/crosshair.cc \
[4556]72                  lib/coord/p_node.cc \
73                  lib/coord/null_parent.cc \
74                  lib/graphics/graphics_engine.cc \
75                  lib/graphics/light.cc \
[5261]76                  lib/graphics/shader.cc \
[4556]77                  lib/graphics/text_engine.cc \
[4839]78                  lib/graphics/render2D/element_2d.cc \
79                  lib/graphics/render2D/render_2d.cc \
[4556]80                  lib/lang/base_object.cc \
[4758]81                  lib/lang/class_list.cc \
[4556]82                  lib/util/ini_parser.cc \
83                  lib/util/substring.cc \
[5010]84                  lib/util/color.cc \
[5141]85                  lib/util/helper_functions.cc \
[4556]86                  lib/math/vector.cc \
87                  lib/math/curve.cc \
88                  glmenu/glmenu_imagescreen.cc \
89                  subprojects/benchmark.cc
[4039]90
[3481]91noinst_HEADERS = orxonox.h \
92                 ability.h \
[4556]93                 defs/message_structures.h \
94                 util/loading/game_loader.h \
95                 util/track/track_manager.h \
96                 util/track/track_node.h \
97                 util/track/pilot_node.h \
98                 util/animation/animation.h \
99                 util/animation/t_animation.h \
100                 util/animation/animation3d.h \
101                 util/animation/animation_player.h \
[4940]102                 util/fast_factory.h \
[4556]103                 util/garbage_collector.h \
104                 util/state.h \
[5040]105                 util/user_control.h \
[4556]106                 util/resource_manager.h \
107                 util/loading/factory.h \
108                 util/loading/load_param.h \
109                 story_entities/story_entity.h \
110                 story_entities/story_def.h \
111                 story_entities/campaign.h \
112                 story_entities/world.h \
113                 world_entities/world_entity.h \
114                 world_entities/camera.h \
115                 world_entities/player.h \
116                 world_entities/npc.h \
117                 world_entities/environment.h \
118                 world_entities/skysphere.h \
119                 world_entities/skybox.h \
120                 world_entities/power_up.h \
121                 world_entities/terrain.h \
122                 world_entities/satellite.h \
123                 world_entities/character_attributes.h \
124                 world_entities/test_entity.h \
[4826]125                 world_entities/weapons/weapon_manager.h \
[4758]126                 world_entities/weapons/weapon.h \
127                 world_entities/weapons/projectile.h \
128                 world_entities/weapons/test_gun.h \
[4963]129                 world_entities/weapons/turret.h \
[4758]130                 world_entities/weapons/test_bullet.h \
[4779]131                 world_entities/weapons/crosshair.h \
[4556]132                 defs/stdincl.h \
133                 defs/stdlibincl.h \
134                 defs/sdlincl.h \
135                 defs/glincl.h \
136                 defs/alincl.h \
137                 defs/comincl.h \
138                 defs/confincl.h \
139                 defs/error.h \
140                 defs/debug.h \
141                 defs/globals.h \
142                 defs/compiler.h \
[4745]143                 defs/class_id.h \
[5133]144                 defs/functor_list.h \
[4556]145                 lib/coord/p_node.h \
146                 lib/coord/null_parent.h \
147                 lib/graphics/graphics_engine.h \
148                 lib/graphics/light.h \
[5261]149                 lib/graphics/shader.h \
[4556]150                 lib/graphics/text_engine.h \
151                 lib/lang/base_object.h \
[4839]152                 lib/graphics/render2D/element_2d.h \
153                 lib/graphics/render2D/render_2d.h \
[4743]154                 lib/lang/class_list.h \
[4556]155                 lib/util/ini_parser.h \
156                 lib/util/substring.h \
[5100]157                 lib/util/array.h \
[4556]158                 lib/util/list.h \
[5010]159                 lib/util/color.h \
[5141]160                 lib/util/helper_functions.h \
[4556]161                 lib/math/vector.h \
162                 lib/math/curve.h \
163                 glmenu/glmenu_imagescreen.h \
164                 subprojects/benchmark.h
[2589]165
[4028]166
[3198]167## orxonox.conf will be used from home-dir instead.
[4261]168EXTRA_DIST = proto/proto_class.h \
[4556]169             proto/proto_class.cc \
170             proto/proto_singleton.h \
171             proto/proto_singleton.cc \
172             proto/proto_world_entity.h \
173             proto/proto_world_entity.cc \
174             defs/include_paths.am
175
[3377]176if SUB_PROJECTS
[4264]177  SUB_PROGS = subprojects
[3377]178else
[4556]179  SUB_PROGS =
[3377]180endif
[3182]181
[4730]182SUBDIRS = lib . $(SUB_PROGS)
[3191]183
[1953]184
185#EXTRA_DIST=orxonox.lsm.in orxonox.spec.in orxonox.texinfo
186
187#  if you write a self-test script named `chk', uncomment the
188#  following and add `chk' to the EXTRA_DIST list
189#TESTS=chk
190
191#  build and install the .info pages
192#info_TEXINFOS = orxonox.texinfo
193#orxonox_TEXINFOS = gpl.texinfo
194
195#  install the man pages
196#man_MANS=orxonox.1
Note: See TracBrowser for help on using the repository browser.