Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

orxonox/trunk: Makefile.am's are both equal again

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