blob: f5c7b7369892f643c1e08af14d3ef750f1821d60 [file] [log] [blame]
Alexandre Julliard633b12d2005-08-25 12:14:13 +00001# 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
9DLLDEFS = @DLLDEFS@
10DLLFLAGS = @DLLFLAGS@
11DEFS = -D__WINESRC__ $(DLLDEFS) $(EXTRADEFS)
12
13@MAKE_RULES@
14
15all: $(MODULE)
16
17# Rules for .a library
18
19$(MODULE): $(OBJS) Makefile.in
20 $(RM) $@
21 $(AR) $@ $(OBJS)
22 $(RANLIB) $@
23
24# Rules for installation
25
26install install-dev:: $(MODULE)
27 $(MKINSTALLDIRS) $(dlldir)
28 $(INSTALL_DATA) $(MODULE) $(dlldir)/$(MODULE)
29
30uninstall::
31 [ ! -d $(dlldir) ] || (cd $(dlldir) && $(RM) $(MODULE))
32
33# Misc. rules
34
35.PHONY: man doc-html doc-sgml
36
37man doc-html doc-sgml:
38
39# End of global library rules