mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
c3bcd6cec5
- Moved DOS ASPI functionality to msdos/dosaspi.c. - Got rid using PROFILE to get SCSI info from wine.conf. - Read scsi info from /proc/scsi/scsi. - Added setting of a reasonable timeout when opening a SCSI device (5 minutes, defined in winescsi.h). - ExecScsiCommand now ALWAYS posts, even on error (which is the correct behavior).
45 lines
545 B
Makefile
45 lines
545 B
Makefile
DEFS = @DLLFLAGS@ -D__WINE__
|
|
TOPSRCDIR = @top_srcdir@
|
|
TOPOBJDIR = ..
|
|
SRCDIR = @srcdir@
|
|
VPATH = @srcdir@
|
|
MODULE = msdos
|
|
|
|
C_SRCS = \
|
|
devices.c \
|
|
dosaspi.c \
|
|
dosconf.c \
|
|
dosmem.c \
|
|
dpmi.c \
|
|
xms.c \
|
|
int09.c \
|
|
int10.c \
|
|
int11.c \
|
|
int12.c \
|
|
int13.c \
|
|
int15.c \
|
|
int16.c \
|
|
int17.c \
|
|
int19.c \
|
|
int1a.c \
|
|
int20.c \
|
|
int21.c \
|
|
int25.c \
|
|
int26.c \
|
|
int29.c \
|
|
int2a.c \
|
|
int2f.c \
|
|
int33.c \
|
|
int3d.c \
|
|
int41.c \
|
|
int4b.c \
|
|
int5c.c \
|
|
interrupts.c \
|
|
ioports.c \
|
|
vxd.c
|
|
|
|
all: $(MODULE).o
|
|
|
|
@MAKE_RULES@
|
|
|
|
### Dependencies:
|