po: Update Polish translation.
[wine.git] / dlls / Makeimplib.rules.in
blob51129485e06846683fdd758ec8a2a66258ff3aca
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 MAKEDEPFLAGS = -xo -xcross.o
12 @MAKE_RULES@
14 all: $(MODULE) @CROSSTEST_DISABLE@ $(MODULE:.a=.cross.a)
16 # Rules for .a library
18 $(MODULE): $(OBJS) Makefile.in
19         $(RM) $@
20         $(AR) $(ARFLAGS) $@ $(OBJS)
21         $(RANLIB) $@
23 $(MODULE:.a=.cross.a): $(CROSSOBJS) Makefile.in
24         $(RM) $@
25         $(CROSSAR) $(ARFLAGS) $@ $(CROSSOBJS)
26         $(CROSSRANLIB) $@
28 # End of global library rules