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
6692d399
Commit
6692d399
authored
Mar 20, 2003
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Moved libwine_uuid to the new libs/ directory.
parent
d5a194b7
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
16 additions
and
19 deletions
+16
-19
Make.rules.in
Make.rules.in
+1
-1
Makefile.in
Makefile.in
+5
-10
configure
configure
+0
-0
configure.ac
configure.ac
+2
-1
Makefile.in
dlls/kernel/Makefile.in
+1
-1
Makefile.in
libs/Makefile.in
+3
-2
.cvsignore
libs/uuid/.cvsignore
+0
-0
Makefile.in
libs/uuid/Makefile.in
+4
-4
dx8guid.c
libs/uuid/dx8guid.c
+0
-0
dxguid.c
libs/uuid/dxguid.c
+0
-0
uuid.c
libs/uuid/uuid.c
+0
-0
No files found.
Make.rules.in
View file @
6692d399
...
...
@@ -73,7 +73,7 @@ DLLDIR = $(TOPOBJDIR)/dlls
LIBPORT = -L$(TOPOBJDIR)/libs/port -lwine_port
LIBWINE = -L$(TOPOBJDIR)/library -lwine
LIBUNICODE = -L$(TOPOBJDIR)/unicode -lwine_unicode
LIBUUID = -L$(TOPOBJDIR)/
ole
-lwine_uuid
LIBUUID = -L$(TOPOBJDIR)/
libs/uuid
-lwine_uuid
@SET_MAKE@
...
...
Makefile.in
View file @
6692d399
...
...
@@ -34,7 +34,6 @@ SUBDIRS = \
library
\
libs
\
miscemu
\
ole
\
programs
\
server
\
tools
\
...
...
@@ -50,10 +49,7 @@ INSTALLLIBSUBDIRS = \
unicode
# Sub-directories to install for install-dev
INSTALLDEVSUBDIRS
=
\
include
\
ole
\
tools
INSTALLDEVSUBDIRS
=
include tools
# Sub-directories to install for both install-lib and install-dev
INSTALLBOTHSUBDIRS
=
dlls libs
...
...
@@ -121,17 +117,16 @@ $(INSTALLBOTHSUBDIRS:%=%/__uninstall__): dummy
# Dependencies between directories
all
:
$(SUBDIRS)
dlls
:
library libs
ole
tools unicode
dlls
:
library libs tools unicode
server
:
library libs tools unicode
miscemu programs
:
dlls library libs
ole
tools unicode
miscemu programs
:
dlls library libs tools unicode
tools
:
library libs unicode
dlls/__install-lib__ dlls/__install-dev__
:
library libs
ole
tools unicode
dlls/__install-lib__ dlls/__install-dev__
:
library libs tools unicode
server/__install__
:
library libs tools unicode
miscemu/__install__ programs/__install__
:
library libs
ole
tools unicode dlls/__install-lib__
miscemu/__install__ programs/__install__
:
library libs tools unicode dlls/__install-lib__
library/__install__
:
library
libs/__install__
:
libs
ole/__install__
:
ole
tools/__install__
:
tools
unicode/__install__
:
unicode
...
...
configure
View file @
6692d399
This diff is collapsed.
Click to expand it.
configure.ac
View file @
6692d399
...
...
@@ -1369,6 +1369,7 @@ WINE_CONFIG_EXTRA_DIR(memory)
WINE_CONFIG_EXTRA_DIR(misc)
WINE_CONFIG_EXTRA_DIR(msdos)
WINE_CONFIG_EXTRA_DIR(objects)
WINE_CONFIG_EXTRA_DIR(ole)
WINE_CONFIG_EXTRA_DIR(programs/regapi/tests)
WINE_CONFIG_EXTRA_DIR(programs/regedit/tests)
WINE_CONFIG_EXTRA_DIR(relay32)
...
...
@@ -1519,8 +1520,8 @@ include/Makefile
library/Makefile
libs/Makefile
libs/port/Makefile
libs/uuid/Makefile
miscemu/Makefile
ole/Makefile
programs/Makefile
programs/avitools/Makefile
programs/clock/Makefile
...
...
dlls/kernel/Makefile.in
View file @
6692d399
...
...
@@ -42,7 +42,7 @@ MC_SRCS = \
messages/winerr_enu.mc
SUBDIRS
=
tests
EXTRASUBDIRS
=
messages nls
EXTRASUBDIRS
=
messages nls
$(TOPOBJDIR)
/ole
@MAKE_DLL_RULES@
...
...
libs/Makefile.in
View file @
6692d399
...
...
@@ -5,13 +5,14 @@ VPATH = @srcdir@
MODULE
=
none
SUBDIRS
=
\
port
port
\
uuid
# Sub-directories to install for install-lib
INSTALLLIBSUBDIRS
=
# Sub-directories to install for install-dev
INSTALLDEVSUBDIRS
=
INSTALLDEVSUBDIRS
=
uuid
INSTALLSUBDIRS
=
$(INSTALLDEVSUBDIRS)
$(INSTALLLIBSUBDIRS)
...
...
ole
/.cvsignore
→
libs/uuid
/.cvsignore
View file @
6692d399
File moved
ole
/Makefile.in
→
libs/uuid
/Makefile.in
View file @
6692d399
DEFS
=
@DLLFLAGS@
-D__WINESRC__
TOPSRCDIR
=
@top_srcdir@
TOPOBJDIR
=
..
TOPOBJDIR
=
..
/..
SRCDIR
=
@srcdir@
VPATH
=
@srcdir@
MODULE
=
none
MODULE
=
libwine_uuid.a
C_SRCS
=
\
dx8guid.c
\
dxguid.c
\
uuid.c
all
:
libwine_uuid.a
all
:
$(MODULE)
@MAKE_RULES@
libwine_uuid.a
:
$(OBJS)
$(MODULE)
:
$(OBJS)
$(RM)
$@
$(AR)
$@
$(OBJS)
$(RANLIB)
$@
...
...
ole
/dx8guid.c
→
libs/uuid
/dx8guid.c
View file @
6692d399
File moved
ole
/dxguid.c
→
libs/uuid
/dxguid.c
View file @
6692d399
File moved
ole
/uuid.c
→
libs/uuid
/uuid.c
View file @
6692d399
File moved
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