Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

orxonox/branches/parenting: :importer: moved code from textures into new file texture.h/cc

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