Can now disable CD-ROM code on Unix systems at build time if need be. The
configure option is not exposed, but the configure script can check this
on a system by system basis.
noinst_LTLIBRARIES = libplatform.la
INCLUDES = -I$(top_srcdir)
if BUILD_BEOS
libplatform_la_SOURCES = \
posix.c \
beos.cpp
else
libplatform_la_SOURCES = \
unix.c \
win32.c \
posix.c
endif
EXTRA_DIST = \
skeleton.c \
macclassic.c \
win32.c \
unix.c \
beos.cpp