| # Global rules for building a static import library -*-Makefile-*- |
| # Each individual makefile should define the following variables: |
| # MODULE : name of the main module being built |
| # plus all variables required by the global Make.rules.in |
| DEFS = -D__WINESRC__ $(DLLDEFS) $(EXTRADEFS) |
| $(MODULE): $(OBJS) Makefile.in |
| install install-dev:: $(MODULE) |
| $(MKINSTALLDIRS) $(dlldir) |
| $(INSTALL_DATA) $(MODULE) $(dlldir)/$(MODULE) |
| [ ! -d $(dlldir) ] || (cd $(dlldir) && $(RM) $(MODULE)) |
| .PHONY: man doc-html doc-sgml |
| # End of global library rules |