Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/orxonox/branches/trackManager/src/Makefile.am @ 3430

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

orxonox/branches/trackManager: merged trunk back to trackManager
merged with command
svn merge -r 3369:HEAD trunk/ branches/trackManager
resoloved conflicts in favor of the trunk.

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