Skip to content

Commit

Permalink
More build system dancing.
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed Jun 28, 2002
1 parent 4366ff0 commit c6e68d3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
1 change: 1 addition & 0 deletions bootstrap
Expand Up @@ -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
Expand Down
7 changes: 5 additions & 2 deletions platform/Makefile.am
Expand Up @@ -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 = \
Expand Down

0 comments on commit c6e68d3

Please sign in to comment.