mirror of
https://github.com/yawut/SDL.git
synced 2026-06-12 03:32:06 -05:00
Files now copied to build directory instead of source directory while configuring
This commit is contained in:
parent
c82baf190a
commit
a71036cb2a
|
|
@ -4,9 +4,13 @@ dnl Function to link an architecture specific file
|
|||
dnl LINK_ARCH_SRC(source_dir, arch, source_file)
|
||||
AC_DEFUN(COPY_ARCH_SRC,
|
||||
[
|
||||
echo "Copying $1/$2/$3 -> $1/$3"
|
||||
old="$srcdir/$1/$2/$3"
|
||||
new="$srcdir/$1/$3"
|
||||
new="$1/$3"
|
||||
if test ! -d $1; then
|
||||
echo "Creating directory $1"
|
||||
mkdir -p $1
|
||||
fi
|
||||
echo "Copying $old -> $new"
|
||||
cat >$new <<__EOF__
|
||||
/* WARNING: This file was automatically generated!
|
||||
* Original: $old
|
||||
|
|
|
|||
|
|
@ -2646,6 +2646,7 @@ CFLAGS="$CFLAGS -I\$(top_srcdir)/src/thread"
|
|||
CFLAGS="$CFLAGS -I\$(top_srcdir)/src/timer"
|
||||
CFLAGS="$CFLAGS -I\$(top_srcdir)/src/endian"
|
||||
CFLAGS="$CFLAGS -I\$(top_srcdir)/src/file"
|
||||
CFLAGS="$CFLAGS -I\$(top_builddir)/src/thread"
|
||||
CXXFLAGS="$CFLAGS"
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user