Moved libwine_uuid to the new libs/ directory.
This commit is contained in:
parent
d5a194b7dd
commit
6692d399d6
|
@ -73,7 +73,7 @@ DLLDIR = $(TOPOBJDIR)/dlls
|
||||||
LIBPORT = -L$(TOPOBJDIR)/libs/port -lwine_port
|
LIBPORT = -L$(TOPOBJDIR)/libs/port -lwine_port
|
||||||
LIBWINE = -L$(TOPOBJDIR)/library -lwine
|
LIBWINE = -L$(TOPOBJDIR)/library -lwine
|
||||||
LIBUNICODE = -L$(TOPOBJDIR)/unicode -lwine_unicode
|
LIBUNICODE = -L$(TOPOBJDIR)/unicode -lwine_unicode
|
||||||
LIBUUID = -L$(TOPOBJDIR)/ole -lwine_uuid
|
LIBUUID = -L$(TOPOBJDIR)/libs/uuid -lwine_uuid
|
||||||
|
|
||||||
@SET_MAKE@
|
@SET_MAKE@
|
||||||
|
|
||||||
|
|
15
Makefile.in
15
Makefile.in
|
@ -34,7 +34,6 @@ SUBDIRS = \
|
||||||
library \
|
library \
|
||||||
libs \
|
libs \
|
||||||
miscemu \
|
miscemu \
|
||||||
ole \
|
|
||||||
programs \
|
programs \
|
||||||
server \
|
server \
|
||||||
tools \
|
tools \
|
||||||
|
@ -50,10 +49,7 @@ INSTALLLIBSUBDIRS = \
|
||||||
unicode
|
unicode
|
||||||
|
|
||||||
# Sub-directories to install for install-dev
|
# Sub-directories to install for install-dev
|
||||||
INSTALLDEVSUBDIRS = \
|
INSTALLDEVSUBDIRS = include tools
|
||||||
include \
|
|
||||||
ole \
|
|
||||||
tools
|
|
||||||
|
|
||||||
# Sub-directories to install for both install-lib and install-dev
|
# Sub-directories to install for both install-lib and install-dev
|
||||||
INSTALLBOTHSUBDIRS = dlls libs
|
INSTALLBOTHSUBDIRS = dlls libs
|
||||||
|
@ -121,17 +117,16 @@ $(INSTALLBOTHSUBDIRS:%=%/__uninstall__): dummy
|
||||||
# Dependencies between directories
|
# Dependencies between directories
|
||||||
|
|
||||||
all: $(SUBDIRS)
|
all: $(SUBDIRS)
|
||||||
dlls: library libs ole tools unicode
|
dlls: library libs tools unicode
|
||||||
server: 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
|
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
|
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
|
library/__install__: library
|
||||||
libs/__install__: libs
|
libs/__install__: libs
|
||||||
ole/__install__: ole
|
|
||||||
tools/__install__: tools
|
tools/__install__: tools
|
||||||
unicode/__install__: unicode
|
unicode/__install__: unicode
|
||||||
|
|
||||||
|
|
|
@ -1369,6 +1369,7 @@ WINE_CONFIG_EXTRA_DIR(memory)
|
||||||
WINE_CONFIG_EXTRA_DIR(misc)
|
WINE_CONFIG_EXTRA_DIR(misc)
|
||||||
WINE_CONFIG_EXTRA_DIR(msdos)
|
WINE_CONFIG_EXTRA_DIR(msdos)
|
||||||
WINE_CONFIG_EXTRA_DIR(objects)
|
WINE_CONFIG_EXTRA_DIR(objects)
|
||||||
|
WINE_CONFIG_EXTRA_DIR(ole)
|
||||||
WINE_CONFIG_EXTRA_DIR(programs/regapi/tests)
|
WINE_CONFIG_EXTRA_DIR(programs/regapi/tests)
|
||||||
WINE_CONFIG_EXTRA_DIR(programs/regedit/tests)
|
WINE_CONFIG_EXTRA_DIR(programs/regedit/tests)
|
||||||
WINE_CONFIG_EXTRA_DIR(relay32)
|
WINE_CONFIG_EXTRA_DIR(relay32)
|
||||||
|
@ -1519,8 +1520,8 @@ include/Makefile
|
||||||
library/Makefile
|
library/Makefile
|
||||||
libs/Makefile
|
libs/Makefile
|
||||||
libs/port/Makefile
|
libs/port/Makefile
|
||||||
|
libs/uuid/Makefile
|
||||||
miscemu/Makefile
|
miscemu/Makefile
|
||||||
ole/Makefile
|
|
||||||
programs/Makefile
|
programs/Makefile
|
||||||
programs/avitools/Makefile
|
programs/avitools/Makefile
|
||||||
programs/clock/Makefile
|
programs/clock/Makefile
|
||||||
|
|
|
@ -42,7 +42,7 @@ MC_SRCS = \
|
||||||
messages/winerr_enu.mc
|
messages/winerr_enu.mc
|
||||||
|
|
||||||
SUBDIRS = tests
|
SUBDIRS = tests
|
||||||
EXTRASUBDIRS = messages nls
|
EXTRASUBDIRS = messages nls $(TOPOBJDIR)/ole
|
||||||
|
|
||||||
@MAKE_DLL_RULES@
|
@MAKE_DLL_RULES@
|
||||||
|
|
||||||
|
|
|
@ -5,13 +5,14 @@ VPATH = @srcdir@
|
||||||
MODULE = none
|
MODULE = none
|
||||||
|
|
||||||
SUBDIRS = \
|
SUBDIRS = \
|
||||||
port
|
port \
|
||||||
|
uuid
|
||||||
|
|
||||||
# Sub-directories to install for install-lib
|
# Sub-directories to install for install-lib
|
||||||
INSTALLLIBSUBDIRS =
|
INSTALLLIBSUBDIRS =
|
||||||
|
|
||||||
# Sub-directories to install for install-dev
|
# Sub-directories to install for install-dev
|
||||||
INSTALLDEVSUBDIRS =
|
INSTALLDEVSUBDIRS = uuid
|
||||||
|
|
||||||
INSTALLSUBDIRS = $(INSTALLDEVSUBDIRS) $(INSTALLLIBSUBDIRS)
|
INSTALLSUBDIRS = $(INSTALLDEVSUBDIRS) $(INSTALLLIBSUBDIRS)
|
||||||
|
|
||||||
|
|
|
@ -1,20 +1,20 @@
|
||||||
DEFS = @DLLFLAGS@ -D__WINESRC__
|
DEFS = @DLLFLAGS@ -D__WINESRC__
|
||||||
TOPSRCDIR = @top_srcdir@
|
TOPSRCDIR = @top_srcdir@
|
||||||
TOPOBJDIR = ..
|
TOPOBJDIR = ../..
|
||||||
SRCDIR = @srcdir@
|
SRCDIR = @srcdir@
|
||||||
VPATH = @srcdir@
|
VPATH = @srcdir@
|
||||||
MODULE = none
|
MODULE = libwine_uuid.a
|
||||||
|
|
||||||
C_SRCS = \
|
C_SRCS = \
|
||||||
dx8guid.c \
|
dx8guid.c \
|
||||||
dxguid.c \
|
dxguid.c \
|
||||||
uuid.c
|
uuid.c
|
||||||
|
|
||||||
all: libwine_uuid.a
|
all: $(MODULE)
|
||||||
|
|
||||||
@MAKE_RULES@
|
@MAKE_RULES@
|
||||||
|
|
||||||
libwine_uuid.a: $(OBJS)
|
$(MODULE): $(OBJS)
|
||||||
$(RM) $@
|
$(RM) $@
|
||||||
$(AR) $@ $(OBJS)
|
$(AR) $@ $(OBJS)
|
||||||
$(RANLIB) $@
|
$(RANLIB) $@
|
Loading…
Reference in New Issue