Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

orxonox/trunk: utils are also LTLIBRARY now

File size: 4.0 KB
Line 
1MAINSRCDIR=.
2include $(MAINSRCDIR)/defs/include_paths.am
3
4
5#"-O3 -pedantic -fPIC -ffast-math -I/usr/X11R6/include"
6
7
8bin_PROGRAMS = orxonox
9
10orxonox_CPPFLAGS = -DIS_ORXONOX
11
12orxonox_DEPENDENCIES = lib/libORXlibs.la \
13                       util/libORXutils.la
14
15orxonox_LDADD = util/libORXutils.la \
16                lib/libORXlibs.la \
17                $(GTK2_LIBS) $(GTHREAD_LIBS) $(CURL_LIBS)
18
19orxonox_SOURCES = orxonox.cc \
20                  story_entities/story_entity.cc \
21                  story_entities/campaign.cc \
22                  story_entities/world.cc \
23                  world_entities/world_entity.cc \
24                  world_entities/camera.cc \
25                  world_entities/player.cc \
26                  world_entities/npc.cc \
27                  world_entities/npc2.cc \
28                  world_entities/environment.cc \
29                  world_entities/skysphere.cc \
30                  world_entities/skybox.cc \
31                  world_entities/terrain.cc \
32                  world_entities/satellite.cc \
33                  world_entities/character_attributes.cc \
34                  world_entities/test_entity.cc \
35                  world_entities/weapons/weapon_manager.cc \
36                  world_entities/weapons/weapon.cc \
37                  world_entities/weapons/projectile.cc \
38                  world_entities/weapons/test_gun.cc \
39                  world_entities/weapons/turret.cc \
40                  world_entities/weapons/test_bullet.cc \
41                  world_entities/weapons/crosshair.cc \
42                  subprojects/benchmark.cc
43
44noinst_HEADERS = orxonox.h \
45                 ability.h \
46                 defs/message_structures.h \
47                 story_entities/story_entity.h \
48                 story_entities/story_def.h \
49                 story_entities/campaign.h \
50                 story_entities/world.h \
51                 world_entities/world_entity.h \
52                 world_entities/camera.h \
53                 world_entities/player.h \
54                 world_entities/npc.h \
55                 world_entities/npc2.h \
56                 world_entities/environment.h \
57                 world_entities/skysphere.h \
58                 world_entities/skybox.h \
59                 world_entities/power_up.h \
60                 world_entities/terrain.h \
61                 world_entities/satellite.h \
62                 world_entities/character_attributes.h \
63                 world_entities/test_entity.h \
64                 world_entities/weapons/weapon_manager.h \
65                 world_entities/weapons/weapon.h \
66                 world_entities/weapons/projectile.h \
67                 world_entities/weapons/test_gun.h \
68                 world_entities/weapons/turret.h \
69                 world_entities/weapons/test_bullet.h \
70                 world_entities/weapons/crosshair.h \
71                 defs/stdincl.h \
72                 defs/stdlibincl.h \
73                 defs/sdlincl.h \
74                 defs/glincl.h \
75                 defs/alincl.h \
76                 defs/comincl.h \
77                 defs/confincl.h \
78                 defs/error.h \
79                 defs/debug.h \
80                 defs/globals.h \
81                 defs/compiler.h \
82                 defs/class_id.h \
83                 defs/functor_list.h \
84                 subprojects/benchmark.h
85
86
87## orxonox.conf will be used from home-dir instead.
88EXTRA_DIST = proto/proto_class.h \
89             proto/proto_class.cc \
90             proto/proto_singleton.h \
91             proto/proto_singleton.cc \
92             proto/proto_world_entity.h \
93             proto/proto_world_entity.cc \
94             defs/include_paths.am
95
96if SUB_PROJECTS
97  SUB_PROGS = subprojects
98else
99  SUB_PROGS =
100endif
101
102SUBDIRS = lib \
103          util \
104          $(SUB_PROGS) \
105          .
106
107
108#EXTRA_DIST=orxonox.lsm.in orxonox.spec.in orxonox.texinfo
109
110#  if you write a self-test script named `chk', uncomment the
111#  following and add `chk' to the EXTRA_DIST list
112#TESTS=chk
113
114#  build and install the .info pages
115#info_TEXINFOS = orxonox.texinfo
116#orxonox_TEXINFOS = gpl.texinfo
117
118#  install the man pages
119#man_MANS=orxonox.1
Note: See TracBrowser for help on using the repository browser.