Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/orxonox/trunk/src/Makefile.am @ 3419

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

orxonox/trunk: copied dave's SkySphere into the Trunk
done it with svn copy, and implemented the Class into the world.cc
it works perfectly

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