Moved sources to their own subdirectory src

git-svn-id: https://svn.code.sf.net/p/extremetuxracer/code/trunk@417 0420edf4-82e4-42fc-9478-35b55e6d67a3
master
cazfi 2013-08-26 21:02:38 +00:00
parent 2da3ba6243
commit 83abd1b455
99 changed files with 104 additions and 104 deletions

View File

@ -1,106 +1,4 @@
SUBDIRS = build data resources
bin_PROGRAMS = etr
etr_SOURCES = \
audio.cpp \
common.cpp \
config_screen.cpp \
course.cpp \
course_render.cpp \
credits.cpp \
env.cpp \
event.cpp \
event_select.cpp \
font.cpp \
ft_font.cpp \
game_config.cpp \
game_ctrl.cpp \
game_over.cpp \
game_type_select.cpp \
gui.cpp \
help.cpp \
hud.cpp \
intro.cpp \
keyframe.cpp \
loading.cpp \
main.cpp \
mathlib.cpp \
newplayer.cpp \
ogl.cpp \
ogl_test.cpp \
particles.cpp \
paused.cpp \
physics.cpp \
quadtree.cpp \
race_select.cpp \
racing.cpp \
regist.cpp \
reset.cpp \
score.cpp \
splash_screen.cpp \
spx.cpp \
states.cpp \
textures.cpp \
tool_char.cpp \
tool_frame.cpp \
tools.cpp \
track_marks.cpp \
translation.cpp \
tux.cpp \
view.cpp \
winsys.cpp
noinst_HEADERS = \
audio.h \
bh.h \
common.h \
config_screen.h \
course.h \
course_render.h \
credits.h \
env.h \
etr_types.h \
event.h \
event_select.h \
font.h \
ft_font.h \
game_config.h \
game_ctrl.h \
game_over.h \
game_type_select.h \
gui.h \
help.h \
hud.h \
intro.h \
keyframe.h \
loading.h \
mathlib.h \
newplayer.h \
ogl.h \
ogl_test.h \
particles.h \
paused.h \
physics.h \
quadtree.h \
race_select.h \
racing.h \
regist.h \
reset.h \
score.h \
splash_screen.h \
spx.h \
states.h \
textures.h \
tool_char.h \
tool_frame.h \
tools.h \
track_marks.h \
translation.h \
tux.h \
version.h \
view.h \
winsys.h
SUBDIRS = src build data resources
EXTRA_DIST = \
autogen.sh \

View File

@ -3,7 +3,7 @@
AC_PREREQ([2.61])
AC_INIT([etr], [0.6-beta1+], [https://sourceforge.net/apps/phpbb/extremetuxracer])
AC_CONFIG_SRCDIR([gui.cpp])
AC_CONFIG_SRCDIR([src/gui.cpp])
AC_CONFIG_HEADERS([etr_config.h])
AM_INIT_AUTOMAKE([dist-xz dist-zip])
@ -77,6 +77,7 @@ CXXFLAGS="${CXXFLAGS} -std=c++11"
AC_CONFIG_FILES([
Makefile
src/Makefile
build/Makefile
build/Installer/Makefile
data/Makefile

101
src/Makefile.am Normal file
View File

@ -0,0 +1,101 @@
bin_PROGRAMS = etr
etr_SOURCES = \
audio.cpp \
common.cpp \
config_screen.cpp \
course.cpp \
course_render.cpp \
credits.cpp \
env.cpp \
event.cpp \
event_select.cpp \
font.cpp \
ft_font.cpp \
game_config.cpp \
game_ctrl.cpp \
game_over.cpp \
game_type_select.cpp \
gui.cpp \
help.cpp \
hud.cpp \
intro.cpp \
keyframe.cpp \
loading.cpp \
main.cpp \
mathlib.cpp \
newplayer.cpp \
ogl.cpp \
ogl_test.cpp \
particles.cpp \
paused.cpp \
physics.cpp \
quadtree.cpp \
race_select.cpp \
racing.cpp \
regist.cpp \
reset.cpp \
score.cpp \
splash_screen.cpp \
spx.cpp \
states.cpp \
textures.cpp \
tool_char.cpp \
tool_frame.cpp \
tools.cpp \
track_marks.cpp \
translation.cpp \
tux.cpp \
view.cpp \
winsys.cpp
noinst_HEADERS = \
audio.h \
bh.h \
common.h \
config_screen.h \
course.h \
course_render.h \
credits.h \
env.h \
etr_types.h \
event.h \
event_select.h \
font.h \
ft_font.h \
game_config.h \
game_ctrl.h \
game_over.h \
game_type_select.h \
gui.h \
help.h \
hud.h \
intro.h \
keyframe.h \
loading.h \
mathlib.h \
newplayer.h \
ogl.h \
ogl_test.h \
particles.h \
paused.h \
physics.h \
quadtree.h \
race_select.h \
racing.h \
regist.h \
reset.h \
score.h \
splash_screen.h \
spx.h \
states.h \
textures.h \
tool_char.h \
tool_frame.h \
tools.h \
track_marks.h \
translation.h \
tux.h \
version.h \
view.h \
winsys.h

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File