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
RevLine 
[3486]1MAINSRCDIR=.
[3487]2AM_CXXFLAGS=-I$(MAINSRCDIR)
3AM_CXXFLAGS+=-I$(MAINSRCDIR)/world_entities
[3486]4AM_CXXFLAGS+=-I$(MAINSRCDIR)/story_entities
5AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib
[3488]6AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib/coord
[3486]7AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib/data
8AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib/gaphics
[3491]9AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib/graphics/font
[3486]10AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib/graphics/importer
[3489]11AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib/gui
[3486]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
[3472]20
[3484]21
[3180]22AM_LDFLAGS= $(MWINDOWS)
[1955]23
[1953]24#"-O3 -pedantic -fPIC -ffast-math -I/usr/X11R6/include"
25
[1955]26
[3508]27bin_PROGRAMS=orxonox sound
[1953]28
[3182]29orxonox_SOURCES= orxonox.cc \
[3478]30                 game_loader.cc \
[3182]31                 command_node.cc \
32                 keynames.cc \
[3478]33                 camera.cc \
34                 track_manager.cc \
35                 light.cc \
36                 story_entities/story_entity.cc \
[3472]37                 story_entities/campaign.cc \
[3478]38                 story_entities/world.cc \
39                 world_entities/world_entity.cc \
40                 world_entities/player.cc \
[3472]41                 world_entities/environment.cc \
[3478]42                 world_entities/skysphere.cc \
[3481]43                 ai/ai.cc \
[3488]44                 lib/coord/p_node.cc \
45                 lib/coord/null_parent.cc \
46                 lib/coord/helper_parent.cc \
47                 lib/data/data_tank.cc \
[3491]48                 lib/graphics/font/fontset.cc \
[3484]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 \
[3483]57                 lib/util/list.cc \
58                 lib/math/vector.cc \
59                 lib/math/matrix.cc \
60                 lib/math/curve.cc \
[3491]61                 glmenu/glmenu_imagescreen.cc
[2589]62
[3509]63sound_SOURCES =  sound_test.cc \
64                 sound_control.cc
[3508]65
[3481]66noinst_HEADERS = orxonox.h \
67                 game_loader.h \
68                 track_manager.h \
69                 ability.h \
[3182]70                 camera.h \
71                 keynames.h \
72                 proto_class.h \
73                 command_node.h \
74                 message_structures.h \
[3481]75                 light.h \
[3472]76                 story_entities/story_entity.h \
77                 story_entities/story_def.h \
78                 story_entities/campaign.h \
[3481]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 \
[3483]87                 world_entities/power_up.h \
[3481]88                 ai/ai.h \
89                 network/synchronisable.h \
90                 defs/stdincl.h \
[3493]91                 defs/glincl.h \
[3481]92                 defs/error.h \
93                 defs/debug.h \
[3488]94                 lib/coord/p_node.h \
95                 lib/coord/null_parent.h \
96                 lib/coord/helper_parent.h \
[3491]97                 lib/graphics/font/fontset.h \
[3484]98                 lib/data/data_tank.h \
99                 lib/lang/base_entity.h \
100                 lib/lang/base_object.h \
[3483]101                 lib/util/list.h \
102                 lib/util/list_template.h \
[3484]103                 lib/util/ini_parser.h \
[3483]104                 lib/math/vector.h \
105                 lib/math/matrix.h \
106                 lib/math/curve.h \
[3491]107                 glmenu/glmenu_imagescreen.h
[2589]108
[3490]109
[3198]110## orxonox.conf will be used from home-dir instead.
111EXTRA_DIST = orxonox.conf
[2816]112
[3377]113if SUB_PROJECTS
[3493]114  SUB_PROGS = lib
[3377]115else
116  SUB_PROGS =
117endif
[3182]118
[3197]119SUBDIRS = . \
[3377]120          $(SUB_PROGS)
[3191]121
[3027]122#  uncomment the following if orxonox requires the math library
[2190]123#orxonox_LDADD=-lm
[1953]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.