mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-01 22:50:08 +00:00
34fa35dc99
makefiles, and added support for building a .def.a static import library too.
35 lines
557 B
Makefile
35 lines
557 B
Makefile
EXTRADEFS = -D_SETUPAPI_
|
|
TOPSRCDIR = @top_srcdir@
|
|
TOPOBJDIR = ../..
|
|
SRCDIR = @srcdir@
|
|
VPATH = @srcdir@
|
|
MODULE = setupapi.dll
|
|
IMPORTLIB = libsetupapi.$(IMPLIBEXT)
|
|
IMPORTS = user32 version advapi32 rpcrt4 kernel32 ntdll
|
|
DELAYIMPORTS = shell32
|
|
EXTRALIBS = $(LIBUNICODE)
|
|
|
|
C_SRCS = \
|
|
devinst.c \
|
|
dirid.c \
|
|
diskspace.c \
|
|
install.c \
|
|
misc.c \
|
|
parser.c \
|
|
queue.c \
|
|
setupcab.c \
|
|
stubs.c
|
|
|
|
C_SRCS16 = \
|
|
devinst16.c \
|
|
infparse.c \
|
|
setupx_main.c \
|
|
virtcopy.c
|
|
|
|
SPEC_SRCS16 = setupx.spec
|
|
|
|
RC_SRCS= setupapi.rc
|
|
|
|
@MAKE_DLL_RULES@
|
|
|
|
### Dependencies:
|