Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

orxonox/branches/parenting: added class HelperParent that i hope will help us… :)

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