Moved dll-specific make rules to a separate Makedll.rules file.
[wine] / dlls / Makedll.rules.in
1 # Global rules for building dlls     -*-Makefile-*-
2 #
3 # Each individual makefile should define the following variables:
4 # MODULE       : name of the main module being built
5 # SOVERSION    : version of the .so file
6 # IMPORTS      : dlls to import (optional)
7 #
8 # plus all variables required by the global Make.rules.in
9 #
10
11 DEFS       = @DLLFLAGS@ -D__WINE__
12 LIBEXT     = @LIBEXT@
13 LDSHARED   = @LDSHARED@
14 SONAME     = lib$(MODULE).so
15 IMPORTLIBS = $(IMPORTS:%=$(DLLDIR)/lib%.$(LIBEXT))
16
17 all: lib$(MODULE).$(LIBEXT)
18
19 @MAKE_RULES@
20
21 lib$(MODULE).so.$(SOVERSION): $(OBJS) Makefile.in $(TOPSRCDIR)/Make.rules.in
22         $(LDSHARED) $(OBJS) -o $@
23
24 lib$(MODULE).so: lib$(MODULE).so.$(SOVERSION)
25         $(RM) $@ && $(LN_S) lib$(MODULE).so.$(SOVERSION) $@
26
27 lib$(MODULE).a: $(OBJS) Makefile.in $(TOPSRCDIR)/Make.rules.in
28         $(RM) $@
29         $(AR) $@ $(OBJS)
30         $(RANLIB) $@
31
32 # Rules for checking that no imports are missing
33
34 IMPORTLIBS = $(IMPORTS:%=$(DLLDIR)/lib%.$(LIBEXT))
35
36 checklink:: lib$(MODULE).$(LIBEXT) $(IMPORTLIBS)
37         $(CC) -o checklink $(TOPSRCDIR)/library/checklink.c -L. -l$(MODULE) -L$(DLLDIR) $(IMPORTS:%=-l%) -L$(TOPOBJDIR) -lwine $(LDOPTIONS) $(X_LIBS) $(XLIB) $(LIBS) && $(RM) checklink
38
39 $(IMPORTLIBS): dummy
40         @cd $(DLLDIR) && $(MAKE) `basename $@`
41
42 # Rules for installation
43
44 .PHONY: install_so install_a
45
46 install_so: lib$(MODULE).so.$(SOVERSION)
47         [ -d $(libdir) ] || $(MKDIR) $(libdir)
48         $(INSTALL_PROGRAM) lib$(MODULE).so.$(SOVERSION) $(libdir)/lib$(MODULE).so.$(SOVERSION)
49         cd $(libdir) && $(RM) lib$(MODULE).so && $(LN_S) lib$(MODULE).so.$(SOVERSION) lib$(MODULE).so
50
51 install_a: lib$(MODULE).a
52         [ -d $(libdir) ] || $(MKDIR) $(libdir)
53         $(INSTALL_DATA) lib$(MODULE).a $(libdir)/lib$(MODULE).a
54
55 install:: $(LIBEXT:%=install_%)
56
57 uninstall::
58         cd $(libdir) && $(RM) lib$(MODULE).so lib$(MODULE).so.$(SOVERSION) lib$(MODULE).a
59
60 clean::
61         $(RM) lib$(MODULE).so.$(SOVERSION)