Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

orxonox/branches/trackManager: backloop-check created

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