This removes a feature of mounting physical CD-ROMs in DOSBox. SDL 2.0 removed SDL_cdrom from supported libraries, so to bring this code back, either the functionality will need to be reimplemented or SDL_cdrom code modernized for SDL 2.0, and bundled with the repo (the same way SDL_sound is already bundled).
10 lines
534 B
Makefile
10 lines
534 B
Makefile
AM_CPPFLAGS = -I$(top_srcdir)/include
|
|
|
|
noinst_LIBRARIES = libdos.a
|
|
EXTRA_DIST = dos_codepages.h dos_keyboard_layout_data.h
|
|
libdos_a_SOURCES = dos.cpp dos_devices.cpp dos_execute.cpp dos_files.cpp dos_ioctl.cpp dos_memory.cpp \
|
|
dos_misc.cpp dos_classes.cpp dos_programs.cpp dos_tables.cpp \
|
|
drives.cpp drives.h drive_virtual.cpp drive_local.cpp drive_cache.cpp drive_fat.cpp \
|
|
drive_iso.cpp dev_con.h dos_mscdex.cpp dos_keyboard_layout.cpp \
|
|
cdrom.h cdrom.cpp cdrom_image.cpp \
|
|
drive_overlay.cpp
|