Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

orxonox/branche/parenting: added nullparent as the center of all parents.

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
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
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                 p_node.h \
66                 null_parent.h
67
68
69## orxonox.conf will be used from home-dir instead.
70EXTRA_DIST = orxonox.conf
71
72### GTK_RELATED
73if HAVE_GTK2
74  GTK_PROGS =console
75else
76  GTK_PROGS =
77endif
78
79SUBDIRS = . \
80          importer \
81          gui \
82          $(GTK_PROGS)
83
84#  uncomment the following if orxonox requires the math library
85#orxonox_LDADD=-lm
86
87#EXTRA_DIST=orxonox.lsm.in orxonox.spec.in orxonox.texinfo
88
89#  if you write a self-test script named `chk', uncomment the
90#  following and add `chk' to the EXTRA_DIST list
91#TESTS=chk
92
93#  build and install the .info pages
94#info_TEXINFOS = orxonox.texinfo
95#orxonox_TEXINFOS = gpl.texinfo
96
97#  install the man pages
98#man_MANS=orxonox.1
Note: See TracBrowser for help on using the repository browser.