Removed SMPEG dependancy.
Added --enable-debug support from Mudrony (with additions). git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@85 8092fc87-c524-0410-9efc-e669fe64eaf9
This commit is contained in:
+97
-84
@@ -67,59 +67,56 @@ AC_CHECK_FUNCS([strupr])
|
|||||||
|
|
||||||
# Check for SDL
|
# Check for SDL
|
||||||
SDL_VERSION=1.2.2
|
SDL_VERSION=1.2.2
|
||||||
SMPEG_VERSION=0.4.0
|
|
||||||
AM_PATH_SDL($SDL_VERSION, , AC_MSG_ERROR([*** SDL version $SDL_VERSION not found!]))
|
AM_PATH_SDL($SDL_VERSION, , AC_MSG_ERROR([*** SDL version $SDL_VERSION not found!]))
|
||||||
AM_PATH_SMPEG($SMPEG_VERSION, , AC_MSG_ERROR([*** smpeg version $SMPEG_VERSION not found!]))
|
|
||||||
AC_CHECK_LIB(SDL_mixer, main, , AC_MSG_ERROR([Your system is missing libSDL_mixer!]),`sdl-config --libs`)
|
AC_CHECK_LIB(SDL_mixer, main, , AC_MSG_ERROR([Your system is missing libSDL_mixer!]),`sdl-config --libs`)
|
||||||
AC_CHECK_LIB(SDL_image, main, , AC_MSG_ERROR([Your system is missing libSDL_image!]),`sdl-config --libs`)
|
AC_CHECK_LIB(SDL_image, main, , AC_MSG_ERROR([Your system is missing libSDL_image!]),`sdl-config --libs`)
|
||||||
AC_CHECK_LIB(smpeg, main, , AC_MSG_ERROR([Your system is missing libsmpeg!]),`smpeg-config --libs`)
|
|
||||||
#AC_CHECK_HEADERS(SDL/SDL_image.h, , AC_MSG_ERROR([Your system is missing SDL_image.h!]))
|
#AC_CHECK_HEADERS(SDL/SDL_image.h, , AC_MSG_ERROR([Your system is missing SDL_image.h!]))
|
||||||
#AC_CHECK_HEADERS(SDL/SDL_mixer.h, , AC_MSG_ERROR([Your system is missing SDL_mixer.h!]))
|
#AC_CHECK_HEADERS(SDL/SDL_mixer.h, , AC_MSG_ERROR([Your system is missing SDL_mixer.h!]))
|
||||||
|
|
||||||
# Select platform dependent OpenGL libs.. (tweak your platform here)
|
# Select platform dependent OpenGL libs.. (tweak your platform here)
|
||||||
case "$target" in
|
case "$target" in
|
||||||
*-*-linux-gnu*)
|
*-*-linux-gnu*)
|
||||||
SYS_GL_LIBS="-lGL"
|
SYS_GL_LIBS="-lGL"
|
||||||
;;
|
;;
|
||||||
*-*-cygwin* | *-*-mingw32*)
|
*-*-cygwin* | *-*-mingw32*)
|
||||||
SYS_GL_LIBS="-lopengl32"
|
SYS_GL_LIBS="-lopengl32"
|
||||||
SYS_GL_CFLAGS="-DGL_VERSION_1_2"
|
SYS_GL_CFLAGS="-DGL_VERSION_1_2"
|
||||||
;;
|
;;
|
||||||
*-*-beos*)
|
*-*-beos*)
|
||||||
SYS_GL_LIBS="-lGL"
|
SYS_GL_LIBS="-lGL"
|
||||||
;;
|
;;
|
||||||
*-*-darwin*)
|
*-*-darwin*)
|
||||||
SYS_GL_LIBS=""
|
SYS_GL_LIBS=""
|
||||||
;;
|
;;
|
||||||
*-*-freebsd*)
|
*-*-freebsd*)
|
||||||
AC_PATH_X
|
AC_PATH_X
|
||||||
if test x$no_x != xyes; then
|
if test x$no_x != xyes; then
|
||||||
CFLAGS="$CFLAGS -L $x_libraries"
|
CFLAGS="$CFLAGS -L $x_libraries"
|
||||||
fi
|
fi
|
||||||
SYS_GL_LIBS="-lGL"
|
SYS_GL_LIBS="-lGL"
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
if test x$have_x = xyes; then
|
if test x$have_x = xyes; then
|
||||||
CFLAGS="$CFLAGS $X_CFLAGS"
|
CFLAGS="$CFLAGS $X_CFLAGS"
|
||||||
SYS_GL_LIBS="$X_LIBS -lGL"
|
SYS_GL_LIBS="$X_LIBS -lGL"
|
||||||
else
|
else
|
||||||
SYS_GL_LIBS="-lGL"
|
SYS_GL_LIBS="-lGL"
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
# Check for OpenGL
|
# Check for OpenGL
|
||||||
AC_MSG_CHECKING(for OpenGL support)
|
AC_MSG_CHECKING(for OpenGL support)
|
||||||
have_opengl=no
|
have_opengl=no
|
||||||
AC_TRY_COMPILE([
|
AC_TRY_COMPILE([
|
||||||
#if defined(__APPLE__) && defined(__MACH__)
|
#if defined(__APPLE__) && defined(__MACH__)
|
||||||
#include <OpenGL/gl.h>
|
#include <OpenGL/gl.h>
|
||||||
#else
|
#else
|
||||||
#include <GL/gl.h>
|
#include <GL/gl.h>
|
||||||
#endif
|
#endif
|
||||||
],[
|
],[
|
||||||
],[
|
],[
|
||||||
have_opengl=yes
|
have_opengl=yes
|
||||||
])
|
])
|
||||||
AC_MSG_RESULT($have_opengl)
|
AC_MSG_RESULT($have_opengl)
|
||||||
GL_LIBS=$SYS_GL_LIBS
|
GL_LIBS=$SYS_GL_LIBS
|
||||||
@@ -127,26 +124,26 @@ AC_SUBST(GL_LIBS)
|
|||||||
|
|
||||||
# Figure out which math library to use
|
# Figure out which math library to use
|
||||||
case "$target" in
|
case "$target" in
|
||||||
*-*-linux-gnu*)
|
*-*-linux-gnu*)
|
||||||
MATHLIB=""
|
MATHLIB=""
|
||||||
;;
|
;;
|
||||||
*-*-cygwin* | *-*-mingw32*)
|
*-*-cygwin* | *-*-mingw32*)
|
||||||
MATHLIB=""
|
MATHLIB=""
|
||||||
;;
|
;;
|
||||||
*-*-beos*)
|
*-*-beos*)
|
||||||
MATHLIB=""
|
MATHLIB=""
|
||||||
;;
|
;;
|
||||||
*-*-darwin*)
|
*-*-darwin*)
|
||||||
MATHLIB=""
|
MATHLIB=""
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
MATHLIB="-lm"
|
MATHLIB="-lm"
|
||||||
AC_PATH_X
|
AC_PATH_X
|
||||||
AC_PATH_XTRA
|
AC_PATH_XTRA
|
||||||
if test x$have_x = xyes; then
|
if test x$have_x = xyes; then
|
||||||
CFLAGS="$CFLAGS $X_CFLAGS"
|
CFLAGS="$CFLAGS $X_CFLAGS"
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
AC_SUBST(MATHLIB)
|
AC_SUBST(MATHLIB)
|
||||||
|
|
||||||
@@ -163,16 +160,32 @@ AM_PROG_LIBTOOL
|
|||||||
# LIBADD_DL=-dlopen
|
# LIBADD_DL=-dlopen
|
||||||
|
|
||||||
# Internationalization support
|
# Internationalization support
|
||||||
# AM_GNU_GETTEXT
|
# AM_GNU_GETTEXT
|
||||||
|
|
||||||
# supported languages:
|
# supported languages:
|
||||||
# ALL_LINGUAS=""
|
# ALL_LINGUAS=""
|
||||||
|
|
||||||
# Set PACKAGE_LOCALE_DIR in config.h.
|
# Set PACKAGE_LOCALE_DIR in config.h.
|
||||||
if test "x${prefix}" = "xNONE"; then
|
if test "x${prefix}" = "xNONE"; then
|
||||||
AC_DEFINE_UNQUOTED(PACKAGE_LOCALE_DIR, "${ac_default_prefix}/${DATADIRNAME}/locale$", "Locale files")
|
AC_DEFINE_UNQUOTED(PACKAGE_LOCALE_DIR, "${ac_default_prefix}/${DATADIRNAME}/locale$", "Locale files")
|
||||||
else
|
else
|
||||||
AC_DEFINE_UNQUOTED(PACKAGE_LOCALE_DIR, "${prefix}/${DATADIRNAME}/locale", "Locale files")
|
AC_DEFINE_UNQUOTED(PACKAGE_LOCALE_DIR, "${prefix}/${DATADIRNAME}/locale", "Locale files")
|
||||||
|
fi
|
||||||
|
|
||||||
|
# --------------------------------------------------------------------------
|
||||||
|
# User selectable features (conditionals)
|
||||||
|
|
||||||
|
AC_ARG_ENABLE(debug,
|
||||||
|
[ --enable-debug Turn on debugging],
|
||||||
|
[case "${enableval}" in
|
||||||
|
yes) debug=true ; AC_DEFINE(DEBUG,,Include debugging code) ;;
|
||||||
|
no) debug=false ;;
|
||||||
|
*) AC_MSG_ERROR(bad value ${enableval} for --enable-debug) ;;
|
||||||
|
esac],
|
||||||
|
[debug=false])
|
||||||
|
AM_CONDITIONAL(DEBUG, test x$debug = xtrue)
|
||||||
|
if [ "x$debug" = "xtrue" ]; then
|
||||||
|
CFLAGS="$CFLAGS -g"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# --------------------------------------------------------------------------
|
# --------------------------------------------------------------------------
|
||||||
@@ -185,30 +198,30 @@ AM_CONFIG_HEADER(config.h)
|
|||||||
# autogen.sh runs.
|
# autogen.sh runs.
|
||||||
|
|
||||||
AC_CONFIG_FILES([
|
AC_CONFIG_FILES([
|
||||||
Makefile
|
Makefile
|
||||||
src/Makefile
|
src/Makefile
|
||||||
src/sc2code/Makefile
|
src/sc2code/Makefile
|
||||||
src/sc2code/libs/Makefile
|
src/sc2code/libs/Makefile
|
||||||
src/sc2code/libs/decomp/Makefile
|
src/sc2code/libs/decomp/Makefile
|
||||||
src/sc2code/libs/memory/Makefile
|
src/sc2code/libs/memory/Makefile
|
||||||
src/sc2code/libs/strings/Makefile
|
src/sc2code/libs/strings/Makefile
|
||||||
src/sc2code/libs/resource/Makefile
|
src/sc2code/libs/resource/Makefile
|
||||||
src/sc2code/libs/math/Makefile
|
src/sc2code/libs/math/Makefile
|
||||||
src/sc2code/libs/input/Makefile
|
src/sc2code/libs/input/Makefile
|
||||||
src/sc2code/libs/input/sdl/Makefile
|
src/sc2code/libs/input/sdl/Makefile
|
||||||
src/sc2code/libs/sound/Makefile
|
src/sc2code/libs/sound/Makefile
|
||||||
src/sc2code/libs/sound/sdl/Makefile
|
src/sc2code/libs/sound/sdl/Makefile
|
||||||
src/sc2code/libs/graphics/Makefile
|
src/sc2code/libs/graphics/Makefile
|
||||||
src/sc2code/libs/graphics/sdl/Makefile
|
src/sc2code/libs/graphics/sdl/Makefile
|
||||||
src/sc2code/libs/task/Makefile
|
src/sc2code/libs/task/Makefile
|
||||||
src/sc2code/libs/threads/Makefile
|
src/sc2code/libs/threads/Makefile
|
||||||
src/sc2code/libs/threads/sdl/Makefile
|
src/sc2code/libs/threads/sdl/Makefile
|
||||||
src/sc2code/libs/time/Makefile
|
src/sc2code/libs/time/Makefile
|
||||||
src/sc2code/libs/time/sdl/Makefile
|
src/sc2code/libs/time/sdl/Makefile
|
||||||
src/sc2code/libs/video/Makefile
|
src/sc2code/libs/video/Makefile
|
||||||
src/sc2code/planets/Makefile
|
src/sc2code/planets/Makefile
|
||||||
src/sc2code/ships/Makefile
|
src/sc2code/ships/Makefile
|
||||||
src/sc2code/comm/Makefile
|
src/sc2code/comm/Makefile
|
||||||
])
|
])
|
||||||
|
|
||||||
AC_OUTPUT
|
AC_OUTPUT
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@ SUBDIRS = sc2code
|
|||||||
|
|
||||||
#CFLAGS =
|
#CFLAGS =
|
||||||
|
|
||||||
INCLUDES = @SDL_CFLAGS@ @SMPEG_CFLAGS@ \
|
INCLUDES = @SDL_CFLAGS@ \
|
||||||
-I$(top_srcdir)/src \
|
-I$(top_srcdir)/src \
|
||||||
-I$(top_srcdir)/src/sc2code \
|
-I$(top_srcdir)/src/sc2code \
|
||||||
-I$(top_srcdir)/src/sc2code/libs
|
-I$(top_srcdir)/src/sc2code/libs
|
||||||
@@ -10,6 +10,6 @@ INCLUDES = @SDL_CFLAGS@ @SMPEG_CFLAGS@ \
|
|||||||
bin_PROGRAMS = sc2
|
bin_PROGRAMS = sc2
|
||||||
|
|
||||||
sc2_SOURCES = port.c starcon2.c
|
sc2_SOURCES = port.c starcon2.c
|
||||||
sc2_LDADD = sc2code/libsc2.la @SDL_LIBS@ @GL_LIBS@ @SMPEG_LIBS@
|
sc2_LDADD = sc2code/libsc2.la @SDL_LIBS@ @GL_LIBS@
|
||||||
noinst_HEADERS = port.h
|
noinst_HEADERS = port.h
|
||||||
|
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ INCLUDES = \
|
|||||||
-I$(top_srcdir)/src \
|
-I$(top_srcdir)/src \
|
||||||
-I$(top_srcdir)/src/sc2code \
|
-I$(top_srcdir)/src/sc2code \
|
||||||
-I$(top_srcdir)/src/sc2code/libs \
|
-I$(top_srcdir)/src/sc2code/libs \
|
||||||
@SDL_CFLAGS@ @SMPEG_CFLAGS@
|
@SDL_CFLAGS@
|
||||||
|
|
||||||
noinst_LTLIBRARIES = libsc2.la
|
noinst_LTLIBRARIES = libsc2.la
|
||||||
|
|
||||||
|
|||||||
@@ -10,7 +10,7 @@ RACES = \
|
|||||||
|
|
||||||
EXTRA_DIRS = $(RACES)
|
EXTRA_DIRS = $(RACES)
|
||||||
|
|
||||||
INCLUDES = @SDL_CFLAGS@ @SMPEG_CFLAGS@ \
|
INCLUDES = @SDL_CFLAGS@ \
|
||||||
-I$(top_srcdir)/src \
|
-I$(top_srcdir)/src \
|
||||||
-I$(top_srcdir)/src/sc2code \
|
-I$(top_srcdir)/src/sc2code \
|
||||||
-I$(top_srcdir)/src/sc2code/libs
|
-I$(top_srcdir)/src/sc2code/libs
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ noinst_HEADERS = \
|
|||||||
memlib.h reslib.h sndlib.h strlib.h tasklib.h threadlib.h \
|
memlib.h reslib.h sndlib.h strlib.h tasklib.h threadlib.h \
|
||||||
timelib.h vargs.h vidlib.h misc.h
|
timelib.h vargs.h vidlib.h misc.h
|
||||||
|
|
||||||
INCLUDES = @SDL_CFLAGS@ @SMPEG_CFLAGS@ \
|
INCLUDES = @SDL_CFLAGS@ \
|
||||||
-I$(top_srcdir)/src \
|
-I$(top_srcdir)/src \
|
||||||
-I$(top_srcdir)/src/sc2code \
|
-I$(top_srcdir)/src/sc2code \
|
||||||
-I$(top_srcdir)/src/sc2code/libs
|
-I$(top_srcdir)/src/sc2code/libs
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
# Written by Mudry <mudry@user.sf.net>, protected by GNU GPL.
|
# Written by Mudry <mudry@user.sf.net>, protected by GNU GPL.
|
||||||
# CVS $ Id: $
|
# CVS $ Id: $
|
||||||
|
|
||||||
INCLUDES = @SDL_CFLAGS@ @SMPEG_CFLAGS@ \
|
INCLUDES = @SDL_CFLAGS@ \
|
||||||
-I$(top_srcdir)/src \
|
-I$(top_srcdir)/src \
|
||||||
-I$(top_srcdir)/src/sc2code \
|
-I$(top_srcdir)/src/sc2code \
|
||||||
-I$(top_srcdir)/src/sc2code/libs
|
-I$(top_srcdir)/src/sc2code/libs
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ SUBDIRS = sdl
|
|||||||
|
|
||||||
#CFLAGS =
|
#CFLAGS =
|
||||||
|
|
||||||
INCLUDES = @SDL_CFLAGS@ @SMPEG_CFLAGS@ \
|
INCLUDES = @SDL_CFLAGS@ \
|
||||||
-I$(top_srcdir)/src \
|
-I$(top_srcdir)/src \
|
||||||
-I$(top_srcdir)/src/sc2code \
|
-I$(top_srcdir)/src/sc2code \
|
||||||
-I$(top_srcdir)/src/sc2code/libs
|
-I$(top_srcdir)/src/sc2code/libs
|
||||||
@@ -16,7 +16,7 @@ libgraphics_la_SOURCES = clipline.c context.c drawable.c filegfx.c font.c \
|
|||||||
|
|
||||||
libgraphics_la_LIBADD = sdl/libsdl.la
|
libgraphics_la_LIBADD = sdl/libsdl.la
|
||||||
|
|
||||||
#libgraphics_la_LDFLAGS = @SMPEG_LIBS@
|
#libgraphics_la_LDFLAGS =
|
||||||
|
|
||||||
noinst_HEADERS = context.h display.h drawable.h font.h gfxintrn.h \
|
noinst_HEADERS = context.h display.h drawable.h font.h gfxintrn.h \
|
||||||
gfx_common.h cmap.h
|
gfx_common.h cmap.h
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
#CFLAGS =
|
#CFLAGS =
|
||||||
|
|
||||||
INCLUDES = @SDL_CFLAGS@ @SMPEG_CFLAGS@ \
|
INCLUDES = @SDL_CFLAGS@ \
|
||||||
-I$(top_srcdir)/src \
|
-I$(top_srcdir)/src \
|
||||||
-I$(top_srcdir)/src/sc2code \
|
-I$(top_srcdir)/src/sc2code \
|
||||||
-I$(top_srcdir)/src/sc2code/libs
|
-I$(top_srcdir)/src/sc2code/libs
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
|
|
||||||
SUBDIRS = sdl
|
SUBDIRS = sdl
|
||||||
|
|
||||||
INCLUDES = @SDL_CFLAGS@ @SMPEG_CFLAGS@ \
|
INCLUDES = @SDL_CFLAGS@ \
|
||||||
-I$(top_srcdir)/src \
|
-I$(top_srcdir)/src \
|
||||||
-I$(top_srcdir)/src/sc2code \
|
-I$(top_srcdir)/src/sc2code \
|
||||||
-I$(top_srcdir)/src/sc2code/libs
|
-I$(top_srcdir)/src/sc2code/libs
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
# Written by Mudry <mudry@user.sf.net>, protected by GNU GPL.
|
# Written by Mudry <mudry@user.sf.net>, protected by GNU GPL.
|
||||||
# CVS $ Id: $
|
# CVS $ Id: $
|
||||||
|
|
||||||
INCLUDES = @SDL_CFLAGS@ @SMPEG_CFLAGS@ \
|
INCLUDES = @SDL_CFLAGS@ \
|
||||||
-I$(top_srcdir)/src \
|
-I$(top_srcdir)/src \
|
||||||
-I$(top_srcdir)/src/sc2code \
|
-I$(top_srcdir)/src/sc2code \
|
||||||
-I$(top_srcdir)/src/sc2code/libs
|
-I$(top_srcdir)/src/sc2code/libs
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
# Written by Mudry <mudry@user.sf.net>, protected by GNU GPL.
|
# Written by Mudry <mudry@user.sf.net>, protected by GNU GPL.
|
||||||
# CVS $ Id: $
|
# CVS $ Id: $
|
||||||
|
|
||||||
INCLUDES = @SDL_CFLAGS@ @SMPEG_CFLAGS@ \
|
INCLUDES = @SDL_CFLAGS@ \
|
||||||
-I$(top_srcdir)/src \
|
-I$(top_srcdir)/src \
|
||||||
-I$(top_srcdir)/src/sc2code \
|
-I$(top_srcdir)/src/sc2code \
|
||||||
-I$(top_srcdir)/src/sc2code/libs
|
-I$(top_srcdir)/src/sc2code/libs
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
# Written by Mudry <mudry@user.sf.net>, protected by GNU GPL.
|
# Written by Mudry <mudry@user.sf.net>, protected by GNU GPL.
|
||||||
# CVS $ Id: $
|
# CVS $ Id: $
|
||||||
|
|
||||||
INCLUDES = @SDL_CFLAGS@ @SMPEG_CFLAGS@ \
|
INCLUDES = @SDL_CFLAGS@ \
|
||||||
-I$(top_srcdir)/src \
|
-I$(top_srcdir)/src \
|
||||||
-I$(top_srcdir)/src/sc2code \
|
-I$(top_srcdir)/src/sc2code \
|
||||||
-I$(top_srcdir)/src/sc2code/libs
|
-I$(top_srcdir)/src/sc2code/libs
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ INCLUDES = \
|
|||||||
-I$(top_srcdir)/src \
|
-I$(top_srcdir)/src \
|
||||||
-I$(top_srcdir)/src/sc2code \
|
-I$(top_srcdir)/src/sc2code \
|
||||||
-I$(top_srcdir)/src/sc2code/libs \
|
-I$(top_srcdir)/src/sc2code/libs \
|
||||||
@SDL_CFLAGS@ @SMPEG_CFLAGS@
|
@SDL_CFLAGS@
|
||||||
|
|
||||||
noinst_LTLIBRARIES = libresource.la
|
noinst_LTLIBRARIES = libresource.la
|
||||||
libresource_la_SOURCES = getres.c loadres.c resdata.c resinit.c direct.c filecntl.c
|
libresource_la_SOURCES = getres.c loadres.c resdata.c resinit.c direct.c filecntl.c
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
|
|
||||||
SUBDIRS = sdl
|
SUBDIRS = sdl
|
||||||
|
|
||||||
INCLUDES = @SDL_CFLAGS@ @SMPEG_CFLAGS@ \
|
INCLUDES = @SDL_CFLAGS@ \
|
||||||
-I$(top_srcdir)/src \
|
-I$(top_srcdir)/src \
|
||||||
-I$(top_srcdir)/src/sc2code \
|
-I$(top_srcdir)/src/sc2code \
|
||||||
-I$(top_srcdir)/src/sc2code/libs
|
-I$(top_srcdir)/src/sc2code/libs
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
# Written by Mudry <mudry@user.sf.net>, protected by GNU GPL.
|
# Written by Mudry <mudry@user.sf.net>, protected by GNU GPL.
|
||||||
# CVS $ Id: $
|
# CVS $ Id: $
|
||||||
|
|
||||||
INCLUDES = @SDL_CFLAGS@ @SMPEG_CFLAGS@ \
|
INCLUDES = @SDL_CFLAGS@ \
|
||||||
-I$(top_srcdir)/src \
|
-I$(top_srcdir)/src \
|
||||||
-I$(top_srcdir)/src/sc2code \
|
-I$(top_srcdir)/src/sc2code \
|
||||||
-I$(top_srcdir)/src/sc2code/libs
|
-I$(top_srcdir)/src/sc2code/libs
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ INCLUDES = \
|
|||||||
-I$(top_srcdir)/src \
|
-I$(top_srcdir)/src \
|
||||||
-I$(top_srcdir)/src/sc2code \
|
-I$(top_srcdir)/src/sc2code \
|
||||||
-I$(top_srcdir)/src/sc2code/libs \
|
-I$(top_srcdir)/src/sc2code/libs \
|
||||||
@SDL_CFLAGS@ @SMPEG_CFLAGS@
|
@SDL_CFLAGS@
|
||||||
|
|
||||||
noinst_LTLIBRARIES = libstrings.la
|
noinst_LTLIBRARIES = libstrings.la
|
||||||
libstrings_la_SOURCES = getstr.c sfileins.c sresins.c strings.c
|
libstrings_la_SOURCES = getstr.c sfileins.c sresins.c strings.c
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
INCLUDES = @SDL_CFLAGS@ @SMPEG_CFLAGS@ \
|
INCLUDES = @SDL_CFLAGS@ \
|
||||||
-I$(top_srcdir)/src \
|
-I$(top_srcdir)/src \
|
||||||
-I$(top_srcdir)/src/sc2code \
|
-I$(top_srcdir)/src/sc2code \
|
||||||
-I$(top_srcdir)/src/sc2code/libs
|
-I$(top_srcdir)/src/sc2code/libs
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
SUBDIRS = sdl
|
SUBDIRS = sdl
|
||||||
|
|
||||||
INCLUDES = @SDL_CFLAGS@ @SMPEG_CFLAGS@ \
|
INCLUDES = @SDL_CFLAGS@ \
|
||||||
-I$(top_srcdir)/src \
|
-I$(top_srcdir)/src \
|
||||||
-I$(top_srcdir)/src/sc2code \
|
-I$(top_srcdir)/src/sc2code \
|
||||||
-I$(top_srcdir)/src/sc2code/libs
|
-I$(top_srcdir)/src/sc2code/libs
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
INCLUDES = @SDL_CFLAGS@ @SMPEG_CFLAGS@ \
|
INCLUDES = @SDL_CFLAGS@ \
|
||||||
-I$(top_srcdir)/src \
|
-I$(top_srcdir)/src \
|
||||||
-I$(top_srcdir)/src/sc2code \
|
-I$(top_srcdir)/src/sc2code \
|
||||||
-I$(top_srcdir)/src/sc2code/libs
|
-I$(top_srcdir)/src/sc2code/libs
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
SUBDIRS = sdl
|
SUBDIRS = sdl
|
||||||
|
|
||||||
INCLUDES = @SDL_CFLAGS@ @SMPEG_CFLAGS@ \
|
INCLUDES = @SDL_CFLAGS@ \
|
||||||
-I$(top_srcdir)/src \
|
-I$(top_srcdir)/src \
|
||||||
-I$(top_srcdir)/src/sc2code \
|
-I$(top_srcdir)/src/sc2code \
|
||||||
-I$(top_srcdir)/src/sc2code/libs
|
-I$(top_srcdir)/src/sc2code/libs
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
INCLUDES = @SDL_CFLAGS@ @SMPEG_CFLAGS@ \
|
INCLUDES = @SDL_CFLAGS@ \
|
||||||
-I$(top_srcdir)/src \
|
-I$(top_srcdir)/src \
|
||||||
-I$(top_srcdir)/src/sc2code \
|
-I$(top_srcdir)/src/sc2code \
|
||||||
-I$(top_srcdir)/src/sc2code/libs
|
-I$(top_srcdir)/src/sc2code/libs
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
# Written by Mudry <mudry@user.sf.net>, protected by GNU GPL.
|
# Written by Mudry <mudry@user.sf.net>, protected by GNU GPL.
|
||||||
# CVS $ Id: $
|
# CVS $ Id: $
|
||||||
|
|
||||||
INCLUDES = @SDL_CFLAGS@ @SMPEG_CFLAGS@ \
|
INCLUDES = @SDL_CFLAGS@ \
|
||||||
-I$(top_srcdir)/src \
|
-I$(top_srcdir)/src \
|
||||||
-I$(top_srcdir)/src/sc2code \
|
-I$(top_srcdir)/src/sc2code \
|
||||||
-I$(top_srcdir)/src/sc2code/libs
|
-I$(top_srcdir)/src/sc2code/libs
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
# Written by Mudry <mudry@user.sf.net>, protected by GNU GPL.
|
# Written by Mudry <mudry@user.sf.net>, protected by GNU GPL.
|
||||||
# CVS $ Id: $
|
# CVS $ Id: $
|
||||||
|
|
||||||
INCLUDES = @SDL_CFLAGS@ @SMPEG_CFLAGS@ \
|
INCLUDES = @SDL_CFLAGS@ \
|
||||||
-I/usr/include/SDL \
|
-I/usr/include/SDL \
|
||||||
-I$(top_srcdir)/src \
|
-I$(top_srcdir)/src \
|
||||||
-I$(top_srcdir)/src/sc2code \
|
-I$(top_srcdir)/src/sc2code \
|
||||||
|
|||||||
@@ -10,7 +10,7 @@ RACES = androsyn arilou blackurq chenjesu chmmr druuge human ilwrath \
|
|||||||
|
|
||||||
EXTRA_DIRS = $(RACES)
|
EXTRA_DIRS = $(RACES)
|
||||||
|
|
||||||
INCLUDES = @SDL_CFLAGS@ @SMPEG_CFLAGS@ \
|
INCLUDES = @SDL_CFLAGS@ \
|
||||||
-I$(top_srcdir)/src \
|
-I$(top_srcdir)/src \
|
||||||
-I$(top_srcdir)/src/sc2code \
|
-I$(top_srcdir)/src/sc2code \
|
||||||
-I$(top_srcdir)/src/sc2code/libs
|
-I$(top_srcdir)/src/sc2code/libs
|
||||||
|
|||||||
Reference in New Issue
Block a user