Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/orxonox/branches/parenting/src/Makefile.am @ 3311

Last change on this file since 3311 was 3311, checked in by patrick, 20 years ago

oroxnox/branches/parenting: implemented helperParent and made some tests with the opengl nurbs lib

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