mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-01 21:04:06 +00:00
32 lines
520 B
Makefile
32 lines
520 B
Makefile
EXTRADEFS = -D_CRYPT32_
|
|
TOPSRCDIR = @top_srcdir@
|
|
TOPOBJDIR = ../..
|
|
SRCDIR = @srcdir@
|
|
VPATH = @srcdir@
|
|
MODULE = crypt32.dll
|
|
IMPORTLIB = libcrypt32.$(IMPLIBEXT)
|
|
IMPORTS = user32 advapi32 kernel32 ntdll
|
|
|
|
C_SRCS = \
|
|
base64.c \
|
|
cert.c \
|
|
chain.c \
|
|
crl.c \
|
|
context.c \
|
|
decode.c \
|
|
encode.c \
|
|
msg.c \
|
|
oid.c \
|
|
proplist.c \
|
|
protectdata.c \
|
|
serialize.c \
|
|
sip.c \
|
|
store.c \
|
|
str.c \
|
|
main.c
|
|
|
|
RC_SRCS = crypt32.rc
|
|
|
|
@MAKE_DLL_RULES@
|
|
|
|
@DEPENDENCIES@ # everything below this line is overwritten by make depend
|