Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
36b5b6b9
Commit
36b5b6b9
authored
Jun 03, 2000
by
Dimitrie O. Paun
Committed by
Alexandre Julliard
Jun 03, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Start to separate KERNEL out of libwine.
parent
8037389c
Hide whitespace changes
Inline
Side-by-side
Showing
18 changed files
with
48 additions
and
17 deletions
+48
-17
Make.rules.in
Make.rules.in
+1
-0
Makefile.in
Makefile.in
+1
-0
configure
configure
+2
-0
configure.in
configure.in
+1
-0
Makefile.in
dlls/Makefile.in
+14
-2
.cvsignore
dlls/kernel/.cvsignore
+9
-0
Makefile.in
dlls/kernel/Makefile.in
+20
-0
comm.spec
dlls/kernel/comm.spec
+0
-0
kernel.spec
dlls/kernel/kernel.spec
+0
-0
kernel32.spec
dlls/kernel/kernel32.spec
+0
-0
system.spec
dlls/kernel/system.spec
+0
-0
toolhelp.spec
dlls/kernel/toolhelp.spec
+0
-0
wow32.spec
dlls/kernel/wow32.spec
+0
-0
wprocs.spec
dlls/kernel/wprocs.spec
+0
-0
.cvsignore
if1632/.cvsignore
+0
-1
Makefile.in
if1632/Makefile.in
+0
-8
.cvsignore
relay32/.cvsignore
+0
-2
Makefile.in
relay32/Makefile.in
+0
-4
No files found.
Make.rules.in
View file @
36b5b6b9
...
...
@@ -104,6 +104,7 @@ DLLS = \
imagehlp \
imm32 \
joystick.drv \
kernel32 \
lz32 \
mcianim.drv \
mciavi.drv \
...
...
Makefile.in
View file @
36b5b6b9
...
...
@@ -31,6 +31,7 @@ LIBSUBDIRS = \
dlls/advapi32
\
dlls/crtdll
\
dlls/display
\
dlls/kernel
\
dlls/mouse
\
dlls/ntdll
\
files
\
...
...
configure
View file @
36b5b6b9
...
...
@@ -6207,6 +6207,7 @@ dlls/gdi/Makefile
dlls/icmp/Makefile
dlls/imagehlp/Makefile
dlls/imm32/Makefile
dlls/kernel/Makefile
dlls/lzexpand/Makefile
dlls/mouse/Makefile
dlls/mpr/Makefile
...
...
@@ -6441,6 +6442,7 @@ dlls/gdi/Makefile
dlls/icmp/Makefile
dlls/imagehlp/Makefile
dlls/imm32/Makefile
dlls/kernel/Makefile
dlls/lzexpand/Makefile
dlls/mouse/Makefile
dlls/mpr/Makefile
...
...
configure.in
View file @
36b5b6b9
...
...
@@ -1001,6 +1001,7 @@ dlls/gdi/Makefile
dlls/icmp/Makefile
dlls/imagehlp/Makefile
dlls/imm32/Makefile
dlls/kernel/Makefile
dlls/lzexpand/Makefile
dlls/mouse/Makefile
dlls/mpr/Makefile
...
...
dlls/Makefile.in
View file @
36b5b6b9
...
...
@@ -24,6 +24,7 @@ DLLFILES = \
icmp/libicmp.@LIBEXT@
\
imagehlp/libimagehlp.@LIBEXT@
\
imm32/libimm32.@LIBEXT@
\
kernel/libkernel32.@LIBEXT@
\
lzexpand/liblz32.@LIBEXT@
\
mpr/libmpr.@LIBEXT@
\
msacm/libmsacm.@LIBEXT@
\
...
...
@@ -72,11 +73,14 @@ DLLFILES = \
# extra names for dlls containing multiple spec files
EXTRADLLNAMES
=
\
avifile
\
comm
\
commdlg
\
compobj
\
ddeml
\
dispdib
\
dplay
\
gdi
\
kernel
\
keyboard
\
lzexpand
\
mmsystem
\
...
...
@@ -93,13 +97,17 @@ EXTRADLLNAMES = \
shell
\
shlwapi
\
storage
\
system
\
toolhelp
\
typelib
\
user
\
ver
\
w32sys
\
win32s16
\
winaspi
\
winsock
winsock
\
wow32
\
wprocs
SUBDIRS
=
\
avifil32
\
...
...
@@ -114,6 +122,7 @@ SUBDIRS = \
icmp
\
imagehlp
\
imm32
\
kernel
\
lzexpand
\
mpr
\
msacm
\
...
...
@@ -182,7 +191,7 @@ libdplayx.@LIBEXT@ libdplay.@LIBEXT@: dplayx/libdplayx.@LIBEXT@
libdsound.@LIBEXT@
:
dsound/libdsound.@LIBEXT@
$(RM)
$@
&&
$(LN_S)
dsound/libdsound.@LIBEXT@
$@
libgdi32.@LIBEXT@ libgdi.@LIBEXT@
:
gdi/libgdi32.@LIBEXT@
libgdi32.@LIBEXT@ libgdi.@LIBEXT@
libdispdib.@LIBEXT@
:
gdi/libgdi32.@LIBEXT@
$(RM)
$@
&&
$(LN_S)
gdi/libgdi32.@LIBEXT@
$@
libicmp.@LIBEXT@
:
icmp/libicmp.@LIBEXT@
...
...
@@ -194,6 +203,9 @@ libimagehlp.@LIBEXT@: imagehlp/libimagehlp.@LIBEXT@
libimm32.@LIBEXT@
:
imm32/libimm32.@LIBEXT@
$(RM)
$@
&&
$(LN_S)
imm32/libimm32.@LIBEXT@
$@
libkernel32.@LIBEXT@ libwow32.@LIBEXT@ libcomm.@LIBEXT@ libkernel.@LIBEXT@ libsystem.@LIBEXT@ libtoolhelp.@LIBEXT@ libwprocs.@LIBEXT@
:
kernel/libkernel32.@LIBEXT@
$(RM)
$@
&&
$(LN_S)
kernel/libkernel32.@LIBEXT@
$@
libjoystick.drv.@LIBEXT@
:
winmm/joystick/libjoystick.drv.@LIBEXT@
$(RM)
$@
&&
$(LN_S)
winmm/joystick/libjoystick.drv.@LIBEXT@
$@
...
...
dlls/kernel/.cvsignore
0 → 100644
View file @
36b5b6b9
Makefile
comm.spec.c
kernel.spec.c
kernel32.spec.c
libkernel32.so.1.0
system.spec.c
toolhelp.spec.c
wow32.spec.c
wprocs.spec.c
dlls/kernel/Makefile.in
0 → 100644
View file @
36b5b6b9
TOPSRCDIR
=
@top_srcdir@
TOPOBJDIR
=
../..
SRCDIR
=
@srcdir@
VPATH
=
@srcdir@
MODULE
=
kernel32
SOVERSION
=
1.0
ALTNAMES
=
wow32
comm
kernel system toolhelp wprocs
SPEC_SRCS
=
\
kernel32.spec
\
wow32.spec
\
comm.spec
\
kernel.spec
\
system.spec
\
toolhelp.spec
\
wprocs.spec
@MAKE_DLL_RULES@
### Dependencies:
if1632
/comm.spec
→
dlls/kernel
/comm.spec
View file @
36b5b6b9
File moved
if1632
/kernel.spec
→
dlls/kernel
/kernel.spec
View file @
36b5b6b9
File moved
relay32
/kernel32.spec
→
dlls/kernel
/kernel32.spec
View file @
36b5b6b9
File moved
if1632
/system.spec
→
dlls/kernel
/system.spec
View file @
36b5b6b9
File moved
if1632
/toolhelp.spec
→
dlls/kernel
/toolhelp.spec
View file @
36b5b6b9
File moved
relay32
/wow32.spec
→
dlls/kernel
/wow32.spec
View file @
36b5b6b9
File moved
if1632
/wprocs.spec
→
dlls/kernel
/wprocs.spec
View file @
36b5b6b9
File moved
if1632/.cvsignore
View file @
36b5b6b9
*.spec.c
Makefile
call16.s
thunk.glue.c
if1632/Makefile.in
View file @
36b5b6b9
...
...
@@ -5,14 +5,6 @@ SRCDIR = @srcdir@
VPATH
=
@srcdir@
MODULE
=
if1632
SPEC_SRCS
=
\
comm.spec
\
dispdib.spec
\
kernel.spec
\
system.spec
\
toolhelp.spec
\
wprocs.spec
C_SRCS
=
\
builtin.c
\
dummy.c
\
...
...
relay32/.cvsignore
View file @
36b5b6b9
Makefile
call32.s
kernel32.spec.c
wow32.spec.c
relay32/Makefile.in
View file @
36b5b6b9
...
...
@@ -5,10 +5,6 @@ SRCDIR = @srcdir@
VPATH
=
@srcdir@
MODULE
=
relay32
SPEC_SRCS
=
\
kernel32.spec
\
wow32.spec
C_SRCS
=
\
builtin32.c
\
relay386.c
\
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment