configure: Changes from running autconf after previous patch.
[wine/hacks.git] / dlls / Makeimplib.rules.in
blobda36eeebf1bb4a4aee50df31c52d4068aa868997
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:%=lib%.a)
17 # Rules for .a library
19 $(MODULE:%=lib%.a): $(OBJS) Makefile.in
20         $(RM) $@
21         $(AR) $(ARFLAGS) $@ $(OBJS)
22         $(RANLIB) $@
24 $(MODULE:%=lib%.cross.a): $(CROSSOBJS) Makefile.in
25         $(RM) $@
26         $(CROSSAR) $(ARFLAGS) $@ $(CROSSOBJS)
27         $(CROSSRANLIB) $@
29 # Rules for installation
31 install install-dev:: $(MODULE:%=lib%.a) $(DESTDIR)$(dlldir)
32         $(INSTALL_DATA) $(MODULE:%=lib%.a) $(DESTDIR)$(dlldir)/$(MODULE:%=lib%.a)
34 uninstall::
35         $(RM) $(DESTDIR)$(dlldir)/$(MODULE:%=lib%.a)
37 # End of global library rules