added missing 'exceptions.h' and 'gettext.h' to Makefile.am
[supertux.git] / src / Makefile.am
1 localedir = $(datadir)/locale
2
3 bin_PROGRAMS = supertux
4 supertux_CXXFLAGS = -DLOCALEDIR=\"$(localedir)\"
5 supertux_LDADD = @LIBINTL@
6
7 supertux_SOURCES = \
8 screen/drawing_context.h \
9 screen/drawing_context.cpp \
10 screen/font.h \
11 screen/font.cpp \
12 screen/screen.h \
13 screen/screen.cpp \
14 screen/texture.cpp \
15 screen/texture.h \
16 lispwriter.h \
17 lispwriter.cpp \
18 badguy.cpp \
19 badguy.h \
20 bitmask.cpp \
21 bitmask.h \
22 button.cpp \
23 button.h \
24 camera.cpp \
25 camera.h \
26 collision.cpp \
27 collision.h \
28 configfile.cpp \
29 configfile.h \
30 door.cpp \
31 door.h \
32 intro.cpp \
33 intro.h \
34 defines.h \
35 exceptions.h \
36 gameloop.cpp \
37 gameloop.h \
38 gettext.h \
39 globals.cpp \
40 globals.h \
41 high_scores.cpp \
42 high_scores.h \
43 interactive_object.cpp \
44 interactive_object.h \
45 level.cpp \
46 level.h \
47 leveleditor.cpp \
48 leveleditor.h \
49 lispreader.cpp \
50 lispreader.h \
51 menu.cpp \
52 menu.h \
53 mousecursor.cpp \
54 mousecursor.h \
55 musicref.cpp \
56 musicref.h \
57 particlesystem.cpp \
58 particlesystem.h \
59 physic.cpp \
60 physic.h \
61 player.cpp \
62 player.h \
63 scene.cpp \
64 scene.h \
65 setup.cpp \
66 setup.h \
67 sound.cpp \
68 sound.h \
69 sound_manager.h \
70 sound_manager.cpp \
71 special.cpp \
72 special.h \
73 sprite.h \
74 sprite.cpp \
75 sprite_manager.cpp \
76 sprite_manager.h \
77 supertux.cpp \
78 timer.cpp \
79 timer.h \
80 title.cpp \
81 title.h \
82 type.cpp \
83 type.h \
84 worldmap.cpp \
85 worldmap.h \
86 tile.h \
87 tile.cpp \
88 resources.h \
89 resources.cpp \
90 gameobjs.h \
91 gameobjs.cpp \
92 game_object.cpp \
93 game_object.h \
94 background.h \
95 background.cpp \
96 tilemap.h \
97 tilemap.cpp \
98 moving_object.h \
99 moving_object.cpp \
100 serializable.h \
101 vector.cpp \
102 vector.h \
103 sector.cpp \
104 sector.h
105
106 # EOF #