Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

Last change on this file since 3320 was 3319, checked in by bensch, 19 years ago

orxonox/branches/parenting: added a testCurve to world.cc, and removed curve from the vector-class.

File size: 1.9 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                 helper_parent.cc \
34                 track_manager.cc \
35                 curve.cc
36
37noinst_HEADERS = ability.h \
38                 data_tank.h \
39                 collision.h \
40                 npc.h \
41                 stdincl.h \
42                 ai.h \
43                 environment.h \
44                 orxonox.h \
45                 synchronisable.h \
46                 base_entity.h \
47                 error.h \
48                 player.h \
49                 track.h \
50                 camera.h \
51                 ini_parser.h \
52                 power_up.h \
53                 vector.h \
54                 keynames.h \
55                 proto_class.h \
56                 world.h \
57                 command_node.h \
58                 list.h \
59                 shoot_laser.h \
60                 world_entity.h \
61                 coordinates.h \
62                 message_structures.h \
63                 shoot_rocket.h \
64                 list_template.h \
65                 story_entity.h \
66                 story_def.h \
67                 game_loader.h \
68                 campaign.h \
69                 p_node.h \
70                 null_parent.h \
71                 base_object.h \
72                 helper_parent.h \
73                 track_manager.h \
74                 curve.h
75
76
77## orxonox.conf will be used from home-dir instead.
78EXTRA_DIST = orxonox.conf
79
80### GTK_RELATED
81if HAVE_GTK2
82  GTK_PROGS =console
83else
84  GTK_PROGS =
85endif
86
87SUBDIRS = . \
88          importer \
89          gui \
90          $(GTK_PROGS)
91
92#  uncomment the following if orxonox requires the math library
93#orxonox_LDADD=-lm
94
95#EXTRA_DIST=orxonox.lsm.in orxonox.spec.in orxonox.texinfo
96
97#  if you write a self-test script named `chk', uncomment the
98#  following and add `chk' to the EXTRA_DIST list
99#TESTS=chk
100
101#  build and install the .info pages
102#info_TEXINFOS = orxonox.texinfo
103#orxonox_TEXINFOS = gpl.texinfo
104
105#  install the man pages
106#man_MANS=orxonox.1
Note: See TracBrowser for help on using the repository browser.