Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

Last change on this file since 3202 was 3202, checked in by patrick, 19 years ago

orxonox/trunk: fixed a problem with the makefile - now compiles on also on my system.

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                 environment.cc \
26                 list.cc
27
28
29noinst_HEADERS = ability.h \
30                 data_tank.h \
31                 npc.h \
32                 stdincl.h \
33                 ai.h \
34                 environment.h \
35                 orxonox.h \
36                 synchronisable.h \
37                 base_entity.h \
38                 error.h \
39                 player.h \
40                 track.h \
41                 camera.h \
42                 ini_parser.h \
43                 power_up.h \
44                 vector.h \
45                 collision.h \
46                 keynames.h \
47                 proto_class.h \
48                 world.h \
49                 command_node.h \
50                 list.h \
51                 shoot_laser.h \
52                 world_entity.h \
53                 coordinates.h \
54                 message_structures.h \
55                 shoot_rocket.h \
56                 list_template.h \
57                 story_entity.h \
58                 story_def.h \
59                 game_loader.h \
60                 campaign.h
61
62## orxonox.conf will be used from home-dir instead.
63EXTRA_DIST = orxonox.conf
64
65### GTK_RELATED
66if HAVE_GTK2
67  GTK_PROGS =console
68else
69  GTK_PROGS =
70endif
71
72SUBDIRS = . \
73          importer \
74          gui \
75          $(GTK_PROGS)
76
77#  uncomment the following if orxonox requires the math library
78#orxonox_LDADD=-lm
79
80#EXTRA_DIST=orxonox.lsm.in orxonox.spec.in orxonox.texinfo
81
82#  if you write a self-test script named `chk', uncomment the
83#  following and add `chk' to the EXTRA_DIST list
84#TESTS=chk
85
86#  build and install the .info pages
87#info_TEXINFOS = orxonox.texinfo
88#orxonox_TEXINFOS = gpl.texinfo
89
90#  install the man pages
91#man_MANS=orxonox.1
Note: See TracBrowser for help on using the repository browser.