From 6fd6e1e2ea60131207bbd6eb56976d74727cd8f0 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Fri, 28 Jun 2002 05:51:37 +0000 Subject: [PATCH] Updated. --- platform/Makefile.am | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/platform/Makefile.am b/platform/Makefile.am index c9fdfe0c..f1a02cea 100644 --- a/platform/Makefile.am +++ b/platform/Makefile.am @@ -2,23 +2,28 @@ noinst_LTLIBRARIES = libplatform.la INCLUDES = -I$(top_srcdir) -X = beos.cpp -Y = beos.cpp - if BUILD_BEOS_CPP - Y = + BEOS_SRC = beos.cpp +else + BEOS_SRC = +endif + +if !BUILD_BEOS_CPP + BEOS_EXTRA = beos.cpp else - X = + BEOS_EXTRA = endif + libplatform_la_SOURCES = \ unix.c \ posix.c \ - $(X) + $(BEOS_SRC) + EXTRA_DIST = \ skeleton.c \ macclassic.c \ win32.c \ - $(Y) + $(BEOS_EXTRA)