Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/orxonox/branches/sound/src/Makefile.am @ 3500

Last change on this file since 3500 was 3238, checked in by bensch, 20 years ago

orxonox/branches: updated branches: buerli, nico, sound. And moved bezierTrack to old.bezierTrack. Conflicts resolved in a usefull order.
Conflics mostly resolved in favor of trunk
merge.

File size: 1.7 KB
Line 
1#AM_CXXFLAGS=""
2AM_LDFLAGS= $(MWINDOWS)
3
4#"-O3 -pedantic -fPIC -ffast-math -I/usr/X11R6/include"
5
6
7bin_PROGRAMS=orxonox sound
8
9sound_SOURCES=sound_test.cc sound_control.cc
10
11orxonox_SOURCES= orxonox.cc \
12                 world.cc \
13                 player.cc \
14                 collision.cc \
15                 data_tank.cc \
16                 world_entity.cc \
17                 vector.cc \
18                 camera.cc \
19                 command_node.cc \
20                 ini_parser.cc \
21                 keynames.cc \
22                 track.cc \
23                 base_entity.cc \
24                 game_loader.cc \
25                 campaign.cc \
26                 story_entity.cc \
27                 environment.cc \
28                 importer/object.cc \
29                 importer/array.cc \
30                 importer/material.cc \
31                 list.cc
32
33noinst_HEADERS = ability.h \
34                 data_tank.h \
35                 collision.h \
36                 npc.h \
37                 stdincl.h \
38                 ai.h \
39                 environment.h \
40                 orxonox.h \
41                 synchronisable.h \
42                 base_entity.h \
43                 error.h \
44                 player.h \
45                 track.h \
46                 camera.h \
47                 ini_parser.h \
48                 power_up.h \
49                 vector.h \
50                 keynames.h \
51                 proto_class.h \
52                 world.h \
53                 command_node.h \
54                 list.h \
55                 shoot_laser.h \
56                 world_entity.h \
57                 coordinates.h \
58                 message_structures.h \
59                 shoot_rocket.h \
60                 list_template.h \
61                 story_entity.h \
62                 story_def.h \
63                 game_loader.h \
64                 campaign.h
65
66## orxonox.conf will be used from home-dir instead.
67EXTRA_DIST = orxonox.conf
68
69### GTK_RELATED
70if HAVE_GTK2
71  GTK_PROGS =console
72else
73  GTK_PROGS =
74endif
75
76SUBDIRS = . \
77          importer \
78          gui \
79          $(GTK_PROGS)
80
81#  uncomment the following if orxonox requires the math library
82#orxonox_LDADD=-lm
83
84#EXTRA_DIST=orxonox.lsm.in orxonox.spec.in orxonox.texinfo
85
86#  if you write a self-test script named `chk', uncomment the
87#  following and add `chk' to the EXTRA_DIST list
88#TESTS=chk
89
90#  build and install the .info pages
91#info_TEXINFOS = orxonox.texinfo
92#orxonox_TEXINFOS = gpl.texinfo
93
94#  install the man pages
95#man_MANS=orxonox.1
Note: See TracBrowser for help on using the repository browser.