Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

orxonox/trunk: some minor changes in the framework, and the font is 25% on the go.

File size: 2.2 KB
RevLine 
[3180]1#AM_CXXFLAGS=""
2AM_LDFLAGS= $(MWINDOWS)
[1955]3
[1953]4#"-O3 -pedantic -fPIC -ffast-math -I/usr/X11R6/include"
5
[1955]6
[1953]7bin_PROGRAMS=orxonox
8
[3182]9orxonox_SOURCES= orxonox.cc \
10                 world.cc \
11                 player.cc \
[3236]12                 collision.cc \
[3182]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 \
[3198]24                 environment.cc \
[3365]25                 importer/model.cc \
[3396]26                 importer/objModel.cc \
[3203]27                 importer/array.cc \
28                 importer/material.cc \
[3365]29                 importer/texture.cc \
[3246]30                 list.cc \
[3365]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 \
[3419]38                 glmenu_imagescreen.cc \
[3436]39                 skysphere.cc \
[3455]40                 light.cc \
[3457]41                 sfont/fontset.cc \
[3458]42                 sfont/glfont.cc
[2589]43
[3182]44noinst_HEADERS = ability.h \
45                 data_tank.h \
[3236]46                 collision.h \
[3182]47                 npc.h \
48                 stdincl.h \
[3433]49                 glincl.h \
[3182]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 \
[3246]74                 campaign.h \
[3365]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 \
[3377]82                 glmenu_imagescreen.h \
[3419]83                 debug.h \
[3436]84                 skysphere.h \
[3456]85                 light.h \
[3458]86                 sfont/fontset.h \
87                 sfont/glfont.h
[2589]88
[3198]89## orxonox.conf will be used from home-dir instead.
90EXTRA_DIST = orxonox.conf
[2816]91
[3198]92### GTK_RELATED
[3191]93if HAVE_GTK2
94  GTK_PROGS =console
95else
96  GTK_PROGS =
97endif
[3377]98if SUB_PROJECTS
99  SUB_PROGS = importer \
100              gui \
101              $(GTK_PROGS)
102else
103  SUB_PROGS =
104endif
[3182]105
[3197]106SUBDIRS = . \
[3377]107          $(SUB_PROGS)
[3191]108
[3027]109#  uncomment the following if orxonox requires the math library
[2190]110#orxonox_LDADD=-lm
[1953]111
112#EXTRA_DIST=orxonox.lsm.in orxonox.spec.in orxonox.texinfo
113
114#  if you write a self-test script named `chk', uncomment the
115#  following and add `chk' to the EXTRA_DIST list
116#TESTS=chk
117
118#  build and install the .info pages
119#info_TEXINFOS = orxonox.texinfo
120#orxonox_TEXINFOS = gpl.texinfo
121
122#  install the man pages
123#man_MANS=orxonox.1
Note: See TracBrowser for help on using the repository browser.