Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

orxonox/trunk: syntax in Makefile.am better now

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