Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/orxonox/branches/levelloader/src/Makefile.am @ 3562

Last change on this file since 3562 was 3525, checked in by chris, 20 years ago

orxonox/branches/levelloader: removed excess class usage adn messed with makefile definitions

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