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
11 DEFS = -D__WINESRC__ $(DLLDEFS) $(EXTRADEFS)
17 # Rules for .a library
19 $(MODULE): $(OBJS) Makefile.in
24 # Rules for installation
26 install install-dev:: $(MODULE)
27 $(MKINSTALLDIRS) $(dlldir)
28 $(INSTALL_DATA) $(MODULE) $(dlldir)/$(MODULE)
31 [ ! -d $(dlldir) ] || (cd $(dlldir) && $(RM) $(MODULE))
35 .PHONY: man doc-html doc-sgml
37 man doc-html doc-sgml:
39 # End of global library rules