Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/orxonox/branches/parenting/src/Makefile.am @ 3309

Last change on this file since 3309 was 3302, checked in by patrick, 19 years ago

orxonox/branches/parenting: implemented parenting and added to framework. sill got some problems with how to pass events through the new entity list (now part of the parenting-framework). changed to a more accurate way of coordinat-ing, the openGL coord-orientation. therefore the world is realy strange because it flies into the wrong direction.

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