Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

orxonox/trunk: moved importer into the Trunk, now no merging is needed anymore.

File size: 1.6 KB
Line 
1#AM_CXXFLAGS=""
2AM_LDFLAGS= $(MWINDOWS)
3
4#"-O3 -pedantic -fPIC -ffast-math -I/usr/X11R6/include"
5
6
7bin_PROGRAMS=orxonox
8
9orxonox_SOURCES= orxonox.cc \
10                 world.cc \
11                 player.cc \
12                 data_tank.cc \
13                 world_entity.cc \
14                 vector.cc \
15                 camera.cc \
16                 collision.cc \
17                 command_node.cc \
18                 ini_parser.cc \
19                 keynames.cc \
20                 track.cc \
21                 base_entity.cc \
22                 game_loader.cc \
23                 campaign.cc \
24                 story_entity.cc \
25                 importer/object.cc \
26                 environment.cc \
27                 importer/array.cc \
28                 importer/material.cc \
29                 list.cc
30
31noinst_HEADERS = ability.h \
32                 data_tank.h \
33                 npc.h \
34                 stdincl.h \
35                 ai.h \
36                 environment.h \
37                 orxonox.h \
38                 synchronisable.h \
39                 base_entity.h \
40                 error.h \
41                 player.h \
42                 track.h \
43                 camera.h \
44                 ini_parser.h \
45                 power_up.h \
46                 vector.h \
47                 collision.h \
48                 keynames.h \
49                 proto_class.h \
50                 world.h \
51                 command_node.h \
52                 list.h \
53                 shoot_laser.h \
54                 world_entity.h \
55                 coordinates.h \
56                 message_structures.h \
57                 shoot_rocket.h \
58                 list_template.h \
59                 story_entity.h \
60                 story_def.h \
61                 game_loader.h \
62                 campaign.h
63
64
65if HAVE_GTK2
66  GTK_PROGS =console
67else
68  GTK_PROGS =
69endif
70
71SUBDIRS = importer \
72          gui \
73          $(GTK_PROGS)
74
75#  uncomment the following if orxonox requires the math library
76#orxonox_LDADD=-lm
77
78#EXTRA_DIST=orxonox.lsm.in orxonox.spec.in orxonox.texinfo
79
80#  if you write a self-test script named `chk', uncomment the
81#  following and add `chk' to the EXTRA_DIST list
82#TESTS=chk
83
84#  build and install the .info pages
85#info_TEXINFOS = orxonox.texinfo
86#orxonox_TEXINFOS = gpl.texinfo
87
88#  install the man pages
89#man_MANS=orxonox.1
Note: See TracBrowser for help on using the repository browser.