This commit is contained in:
Ryan C. Gordon 2002-06-28 05:51:37 +00:00
parent 4722cbbce5
commit 6fd6e1e2ea
1 changed files with 12 additions and 7 deletions

View File

@ -2,23 +2,28 @@ noinst_LTLIBRARIES = libplatform.la
INCLUDES = -I$(top_srcdir) INCLUDES = -I$(top_srcdir)
X = beos.cpp
Y = beos.cpp
if BUILD_BEOS_CPP if BUILD_BEOS_CPP
Y = BEOS_SRC = beos.cpp
else else
X = BEOS_SRC =
endif endif
if !BUILD_BEOS_CPP
BEOS_EXTRA = beos.cpp
else
BEOS_EXTRA =
endif
libplatform_la_SOURCES = \ libplatform_la_SOURCES = \
unix.c \ unix.c \
posix.c \ posix.c \
$(X) $(BEOS_SRC)
EXTRA_DIST = \ EXTRA_DIST = \
skeleton.c \ skeleton.c \
macclassic.c \ macclassic.c \
win32.c \ win32.c \
$(Y) $(BEOS_EXTRA)