mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-02 03:08:42 +00:00
c3eac43839
a separate libdxguid library.
23 lines
329 B
Makefile
23 lines
329 B
Makefile
DEFS = -D__WINESRC__
|
|
DLLFLAGS = @DLLFLAGS@
|
|
TOPSRCDIR = @top_srcdir@
|
|
TOPOBJDIR = ../..
|
|
SRCDIR = @srcdir@
|
|
VPATH = @srcdir@
|
|
MODULE = libdxguid.a
|
|
|
|
C_SRCS = \
|
|
dx8guid.c \
|
|
dx9guid.c \
|
|
dxguid.c
|
|
|
|
all: $(MODULE)
|
|
|
|
@MAKE_RULES@
|
|
|
|
$(MODULE): $(OBJS) Makefile.in
|
|
$(RM) $@
|
|
$(AR) $@ $(OBJS)
|
|
$(RANLIB) $@
|
|
|
|
### Dependencies:
|