secur32: Mask away NTLMv2 and key exchange flags so we never negotiate it for now.
[wine.git] / dlls / Makeimplib.rules.in
blob2af10ab707b5fd974b3adbe68952bd177df0f760
1 # Global rules for building a static import library     -*-Makefile-*-
3 # Each individual makefile should define the following variables:
4 # MODULE       : name of the main module being built
6 # plus all variables required by the global Make.rules.in
9 DLLFLAGS = @DLLFLAGS@
10 DEFS     = -D__WINESRC__ $(EXTRADEFS)
11 INSTALLDIRS = $(DESTDIR)$(dlldir)
13 @MAKE_RULES@
15 all: $(MODULE)
17 # Rules for .a library
19 $(MODULE): $(OBJS) Makefile.in
20         $(RM) $@
21         $(AR) $@ $(OBJS)
22         $(RANLIB) $@
24 # Rules for installation
26 install install-dev:: $(MODULE) $(DESTDIR)$(dlldir)
27         $(INSTALL_DATA) $(MODULE) $(DESTDIR)$(dlldir)/$(MODULE)
29 install-lib::
31 uninstall::
32         $(RM) $(DESTDIR)$(dlldir)/$(MODULE)
34 # Misc. rules
36 .PHONY: man doc-html doc-sgml
38 man doc-html doc-sgml:
40 # End of global library rules