msi/tests: Write-strings warnings fixes.
[wine] / dlls / Makeimplib.rules.in
1 # Global rules for building a static import library     -*-Makefile-*-
2 #
3 # Each individual makefile should define the following variables:
4 # MODULE       : name of the main module being built
5 #
6 # plus all variables required by the global Make.rules.in
7 #
8
9 DLLFLAGS = @DLLFLAGS@
10 DEFS     = -D__WINESRC__ $(EXTRADEFS)
11
12 @MAKE_RULES@
13
14 all: $(MODULE)
15
16 # Rules for .a library
17
18 $(MODULE): $(OBJS) Makefile.in
19         $(RM) $@
20         $(AR) $@ $(OBJS)
21         $(RANLIB) $@
22
23 # Rules for installation
24
25 install install-dev:: $(MODULE)
26         $(MKINSTALLDIRS) $(DESTDIR)$(dlldir)
27         $(INSTALL_DATA) $(MODULE) $(DESTDIR)$(dlldir)/$(MODULE)
28
29 install-lib::
30
31 uninstall::
32         $(RM) $(DESTDIR)$(dlldir)/$(MODULE)
33
34 # Misc. rules
35
36 .PHONY: man doc-html doc-sgml
37
38 man doc-html doc-sgml:
39
40 # End of global library rules