More build system dancing.

This commit is contained in:
Ryan C. Gordon 2002-06-28 05:40:52 +00:00
parent 4366ff0f48
commit c6e68d3dcc
2 changed files with 6 additions and 2 deletions

View File

@ -2,6 +2,7 @@
set -e
echo "Initial preparation...this can take awhile, so sit tight..."
perl -w -e 'exit 0 if (-f "Makefile.am"); my $x = `automake --version |head -n 1`; chomp($x); $x = 0.0 if ($x !~ s/\A.*?(\d+\.\d+).*\Z/$1/); if ($x < 1.5) { rename ("./Makefile.am.oldautomake", "./Makefile.am"); } else { rename ("./Makefile.am.newautomake", "./Makefile.am"); }'
aclocal
libtoolize --automake --copy --force
autoheader

View File

@ -2,10 +2,13 @@ noinst_LTLIBRARIES = libplatform.la
INCLUDES = -I$(top_srcdir)
X = beos.cpp
Y = beos.cpp
if BUILD_BEOS_CPP
X = beos.cpp
Y =
else
Y = beos.cpp
X =
endif
libplatform_la_SOURCES = \