Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

orxonox/trunk: added folder subprojects.
now one can test all the features one likes in an already handled file in subrojects/testmain

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