From 2cfd38c9bf6eb87d827812e3263ef6476a29a700 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Fri, 28 Jun 2002 06:30:07 +0000 Subject: [PATCH] Ugh. --- platform/Makefile.am | 21 +++++++-------------- 1 file changed, 7 insertions(+), 14 deletions(-) diff --git a/platform/Makefile.am b/platform/Makefile.am index 1b1a5a0f..cae7428d 100644 --- a/platform/Makefile.am +++ b/platform/Makefile.am @@ -3,27 +3,20 @@ noinst_LTLIBRARIES = libplatform.la INCLUDES = -I$(top_srcdir) if BUILD_BEOS -BEOS_SRC = beos.cpp -else -BEOS_SRC = -endif - -if BUILD_BEOS -BEOS_EXTRADIST = -else -BEOS_EXTRADIST = beos.cpp -endif - - libplatform_la_SOURCES = \ unix.c \ posix.c \ - $(BEOS_SRC) + beos.cpp +else +libplatform_la_SOURCES = \ + unix.c \ + posix.c +endif EXTRA_DIST = \ skeleton.c \ macclassic.c \ win32.c \ - $(BEOS_EXTRADIST) + beos.cpp