Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

orxonox/trunk: added new File glfont.c that will be modified, so it can display any ttf font

also included libSDL_ttf into configure. this enables the use of any ttf font as mentioned by konfuzzius in orxonox-dev mail 266.

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