mirror of
https://github.com/reactos/wine.git
synced 2024-11-25 04:39:45 +00:00
c3eac43839
a separate libdxguid library.
22 lines
299 B
Makefile
22 lines
299 B
Makefile
DEFS = -D__WINESRC__
|
|
DLLFLAGS = @DLLFLAGS@
|
|
TOPSRCDIR = @top_srcdir@
|
|
TOPOBJDIR = ../..
|
|
SRCDIR = @srcdir@
|
|
VPATH = @srcdir@
|
|
MODULE = libuuid.a
|
|
|
|
C_SRCS = \
|
|
uuid.c
|
|
|
|
all: $(MODULE)
|
|
|
|
@MAKE_RULES@
|
|
|
|
$(MODULE): $(OBJS) Makefile.in
|
|
$(RM) $@
|
|
$(AR) $@ $(OBJS)
|
|
$(RANLIB) $@
|
|
|
|
### Dependencies:
|