Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

orxonox/trunk: implemented a first header file for the Parent Node, still in hard-code development

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