Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

orxonox/trunk: fixed font leak and removed sfont again

File size: 2.8 KB
Line 
1AM_CXXFLAGS="-I./world_entities"
2AM_CXXFLAGS+="-I./story_entities"
3AM_CXXFLAGS+="-I./mathlib"
4AM_CXXFLAGS+="-I./lib"
5AM_CXXFLAGS+="-I./defs"
6AM_CXXFLAGS+="-I./font"
7AM_CXXFLAGS+="-I./network"
8AM_CXXFLAGS+="-I./glmenu"
9
10AM_LDFLAGS= $(MWINDOWS)
11
12#"-O3 -pedantic -fPIC -ffast-math -I/usr/X11R6/include"
13
14
15bin_PROGRAMS=orxonox
16
17orxonox_SOURCES= orxonox.cc \
18                 game_loader.cc \
19                 data_tank.cc \
20                 command_node.cc \
21                 keynames.cc \
22                 camera.cc \
23                 base_entity.cc \
24                 base_object.cc \
25                 p_node.cc \
26                 null_parent.cc \
27                 helper_parent.cc \
28                 track_manager.cc \
29                 light.cc \
30                 \
31                 story_entities/story_entity.cc \
32                 story_entities/campaign.cc \
33                 story_entities/world.cc \
34                 \
35                 world_entities/world_entity.cc \
36                 world_entities/player.cc \
37                 world_entities/environment.cc \
38                 world_entities/skysphere.cc \
39                 \
40                 importer/array.cc \
41                 importer/objModel.cc \
42                 importer/model.cc \
43                 importer/material.cc \
44                 importer/texture.cc \
45                 \
46                 mathlib/vector.cc \
47                 mathlib/matrix.cc \
48                 mathlib/curve.cc \
49                 \
50                 lib/ini_parser.cc \
51                 lib/list.cc \
52                 \
53                 glmenu/glmenu_imagescreen.cc \
54                 \
55                 font/fontset.cc
56
57noinst_HEADERS = ability.h \
58                 data_tank.h \
59                 world_entities/npc.h \
60                 defs/stdincl.h \
61                 glincl.h \
62                 ai.h \
63                 world_entities/environment.h \
64                 orxonox.h \
65                 network/synchronisable.h \
66                 base_entity.h \
67                 defs/error.h \
68                 world_entities/player.h \
69                 camera.h \
70                 lib/ini_parser.h \
71                 power_up.h \
72                 mathlib/vector.h \
73                 keynames.h \
74                 proto_class.h \
75                 story_entities/world.h \
76                 command_node.h \
77                 lib/list.h \
78                 world_entities/shoot_laser.h \
79                 world_entities/world_entity.h \
80                 message_structures.h \
81                 world_entities/shoot_rocket.h \
82                 lib/list_template.h \
83                 story_entities/story_entity.h \
84                 story_entities/story_def.h \
85                 game_loader.h \
86                 story_entities/campaign.h \
87                 p_node.h \
88                 null_parent.h \
89                 base_object.h \
90                 helper_parent.h \
91                 track_manager.h \
92                 mathlib/matrix.h \
93                 mathlib/curve.h \
94                 glmenu/glmenu_imagescreen.h \
95                 defs/debug.h \
96                 world_entities/skysphere.h \
97                 light.h \
98                 font/fontset.h
99
100## orxonox.conf will be used from home-dir instead.
101EXTRA_DIST = orxonox.conf
102
103### GTK_RELATED
104if HAVE_GTK2
105  GTK_PROGS =console
106else
107  GTK_PROGS =
108endif
109if SUB_PROJECTS
110  SUB_PROGS = importer \
111              gui \
112              $(GTK_PROGS)
113else
114  SUB_PROGS =
115endif
116
117SUBDIRS = . \
118          $(SUB_PROGS)
119
120#  uncomment the following if orxonox requires the math library
121#orxonox_LDADD=-lm
122
123#EXTRA_DIST=orxonox.lsm.in orxonox.spec.in orxonox.texinfo
124
125#  if you write a self-test script named `chk', uncomment the
126#  following and add `chk' to the EXTRA_DIST list
127#TESTS=chk
128
129#  build and install the .info pages
130#info_TEXINFOS = orxonox.texinfo
131#orxonox_TEXINFOS = gpl.texinfo
132
133#  install the man pages
134#man_MANS=orxonox.1
Note: See TracBrowser for help on using the repository browser.