40 lines
552 B
Makefile
40 lines
552 B
Makefile
MODULE = krnl386.exe16
|
|
IMPORTLIB = kernel
|
|
IMPORTS = kernel32 ntdll winecrt0
|
|
DELAYIMPORTS = user32
|
|
EXTRADLLFLAGS = -m16 -nodefaultlibs -Wb,--dll-name,kernel
|
|
|
|
C_SRCS = \
|
|
atom.c \
|
|
dosmem.c \
|
|
error.c \
|
|
file.c \
|
|
fpu.c \
|
|
global.c \
|
|
instr.c \
|
|
int15.c \
|
|
int21.c \
|
|
int25.c \
|
|
int26.c \
|
|
int2f.c \
|
|
int31.c \
|
|
interrupts.c \
|
|
ioports.c \
|
|
kernel.c \
|
|
local.c \
|
|
ne_module.c \
|
|
ne_segment.c \
|
|
registry.c \
|
|
relay.c \
|
|
resource.c \
|
|
selector.c \
|
|
snoop.c \
|
|
syslevel.c \
|
|
task.c \
|
|
thunk.c \
|
|
utthunk.c \
|
|
vxd.c \
|
|
wowthunk.c
|
|
|
|
RC_SRCS = version.rc
|