Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/orxonox/branches/soundEngine/src/Makefile.am @ 3512

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

orxonox/branches/soundEngine: moved unrelevant stuff out of sound_control.

File size: 3.4 KB
Line 
1MAINSRCDIR=.
2AM_CXXFLAGS=-I$(MAINSRCDIR)
3AM_CXXFLAGS+=-I$(MAINSRCDIR)/world_entities
4AM_CXXFLAGS+=-I$(MAINSRCDIR)/story_entities
5AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib
6AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib/coord
7AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib/data
8AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib/gaphics
9AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib/graphics/font
10AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib/graphics/importer
11AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib/gui
12AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib/lang
13AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib/util
14AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib/math
15AM_CXXFLAGS+=-I$(MAINSRCDIR)/defs
16AM_CXXFLAGS+=-I$(MAINSRCDIR)/font
17AM_CXXFLAGS+=-I$(MAINSRCDIR)/network
18AM_CXXFLAGS+=-I$(MAINSRCDIR)/glmenu
19AM_CXXFLAGS+=-I$(MAINSRCDIR)/ai
20
21
22AM_LDFLAGS= $(MWINDOWS)
23
24#"-O3 -pedantic -fPIC -ffast-math -I/usr/X11R6/include"
25
26
27bin_PROGRAMS=orxonox sound
28
29orxonox_SOURCES= orxonox.cc \
30                 game_loader.cc \
31                 command_node.cc \
32                 keynames.cc \
33                 camera.cc \
34                 track_manager.cc \
35                 light.cc \
36                 story_entities/story_entity.cc \
37                 story_entities/campaign.cc \
38                 story_entities/world.cc \
39                 world_entities/world_entity.cc \
40                 world_entities/player.cc \
41                 world_entities/environment.cc \
42                 world_entities/skysphere.cc \
43                 ai/ai.cc \
44                 lib/coord/p_node.cc \
45                 lib/coord/null_parent.cc \
46                 lib/coord/helper_parent.cc \
47                 lib/data/data_tank.cc \
48                 lib/graphics/font/fontset.cc \
49                 lib/graphics/importer/array.cc \
50                 lib/graphics/importer/objModel.cc \
51                 lib/graphics/importer/model.cc \
52                 lib/graphics/importer/material.cc \
53                 lib/graphics/importer/texture.cc \
54                 lib/lang/base_entity.cc \
55                 lib/lang/base_object.cc \
56                 lib/util/ini_parser.cc \
57                 lib/util/list.cc \
58                 lib/math/vector.cc \
59                 lib/math/matrix.cc \
60                 lib/math/curve.cc \
61                 glmenu/glmenu_imagescreen.cc
62
63sound_SOURCES =  sound_test.cc \
64                 sound_control.cc
65
66noinst_HEADERS = orxonox.h \
67                 game_loader.h \
68                 track_manager.h \
69                 ability.h \
70                 camera.h \
71                 keynames.h \
72                 proto_class.h \
73                 command_node.h \
74                 message_structures.h \
75                 light.h \
76                 story_entities/story_entity.h \
77                 story_entities/story_def.h \
78                 story_entities/campaign.h \
79                 story_entities/world.h \
80                 world_entities/world_entity.h \
81                 world_entities/player.h \
82                 world_entities/npc.h \
83                 world_entities/environment.h \
84                 world_entities/skysphere.h \
85                 world_entities/shoot_laser.h \
86                 world_entities/shoot_rocket.h \
87                 world_entities/power_up.h \
88                 ai/ai.h \
89                 network/synchronisable.h \
90                 defs/stdincl.h \
91                 defs/glincl.h \
92                 defs/error.h \
93                 defs/debug.h \
94                 lib/coord/p_node.h \
95                 lib/coord/null_parent.h \
96                 lib/coord/helper_parent.h \
97                 lib/graphics/font/fontset.h \
98                 lib/data/data_tank.h \
99                 lib/lang/base_entity.h \
100                 lib/lang/base_object.h \
101                 lib/util/list.h \
102                 lib/util/list_template.h \
103                 lib/util/ini_parser.h \
104                 lib/math/vector.h \
105                 lib/math/matrix.h \
106                 lib/math/curve.h \
107                 glmenu/glmenu_imagescreen.h
108
109
110## orxonox.conf will be used from home-dir instead.
111EXTRA_DIST = orxonox.conf
112
113if SUB_PROJECTS
114  SUB_PROGS = lib
115else
116  SUB_PROGS =
117endif
118
119SUBDIRS = . \
120          $(SUB_PROGS)
121
122#  uncomment the following if orxonox requires the math library
123#orxonox_LDADD=-lm
124
125#EXTRA_DIST=orxonox.lsm.in orxonox.spec.in orxonox.texinfo
126
127#  if you write a self-test script named `chk', uncomment the
128#  following and add `chk' to the EXTRA_DIST list
129#TESTS=chk
130
131#  build and install the .info pages
132#info_TEXINFOS = orxonox.texinfo
133#orxonox_TEXINFOS = gpl.texinfo
134
135#  install the man pages
136#man_MANS=orxonox.1
Note: See TracBrowser for help on using the repository browser.