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)
X = beos.cpp
Y = beos.cpp
if BUILD_BEOS_CPP
Y =
BEOS_SRC = beos.cpp
else
X =
BEOS_SRC =
endif
if !BUILD_BEOS_CPP
BEOS_EXTRA = beos.cpp
else
BEOS_EXTRA =
endif
libplatform_la_SOURCES = \
unix.c \
posix.c \
$(X)
$(BEOS_SRC)
EXTRA_DIST = \
skeleton.c \
macclassic.c \
win32.c \
$(Y)
$(BEOS_EXTRA)