3 # This creates a shared library.
6 # $(SOURCE) - The source code to use
7 # $(HEADERS) - Exported header files and private header files
8 # $(LIBRARY) - The name of the library without lib or .so
9 # $(MAJOR) - The major version number of this library
10 # $(MINOR) - The minor version number of this library
12 # All output is writtin to .opic files in the build directory to
13 # signify the PIC output.
15 # See defaults.mak for information about LOCAL
17 # Some local definitions
18 LOCAL := lib$(LIBRARY).so.$(MAJOR).$(MINOR)
19 $(LOCAL)-OBJS := $(addprefix $(OBJ)/,$(addsuffix .opic,$(notdir $(basename $(SOURCE)))))
20 $(LOCAL)-DEP := $(addprefix $(DEP)/,$(addsuffix .opic.d,$(notdir $(basename $(SOURCE)))))
21 $(LOCAL)-HEADERS := $(addprefix $(INCLUDE)/,$(HEADERS))
22 $(LOCAL)-SONAME := lib$(LIBRARY).so.$(MAJOR)
23 $(LOCAL)-SLIBS := $(SLIBS)
24 $(LOCAL)-LIBRARY := $(LIBRARY)
26 # Install the command hooks
27 headers: $($(LOCAL)-HEADERS)
28 library: $(LIB)/lib$(LIBRARY).so $(LIB)/lib$(LIBRARY).so.$(MAJOR) $(LIB)/lib$(LIBRARY).a
30 veryclean: veryclean/$(LOCAL)
33 .PHONY: clean/$(LOCAL) veryclean/$(LOCAL)
35 -rm -f $($(@F)-OBJS) $($(@F)-DEP)
36 veryclean/$(LOCAL): clean/$(LOCAL)
37 -rm -f $($(@F)-HEADERS) $(LIB)/lib$($(@F)-LIBRARY).so*
39 # Build rules for the two symlinks
40 .PHONY: $(LIB)/lib$(LIBRARY).so.$(MAJOR) $(LIB)/lib$(LIBRARY).so
41 $(LIB)/lib$(LIBRARY).so.$(MAJOR): $(LIB)/lib$(LIBRARY).so.$(MAJOR).$(MINOR)
43 $(LIB)/lib$(LIBRARY).so: $(LIB)/lib$(LIBRARY).so.$(MAJOR).$(MINOR)
46 # The binary build rule
47 $(LIB)/lib$(LIBRARY).so.$(MAJOR).$(MINOR): $($(LOCAL)-HEADERS) $($(LOCAL)-OBJS)
48 -rm -f $(LIB)/lib$($(@F)-LIBRARY).so* 2> /dev/null
49 echo Building shared library $@
50 $(CXX) $(CXXFLAGS) $(LDFLAGS) $(PICFLAGS) $(LFLAGS) -o $@ \
51 $(LFLAGS_SO) $(SONAME_MAGIC)$($(@F)-SONAME) -shared \
52 $(filter %.opic,$^) $($(@F)-SLIBS)
54 $(LIB)/lib$(LIBRARY).a: $($(LOCAL)-HEADERS) $($(LOCAL)-OBJS)
55 -rm -f $(LIB)/lib$($(@F)-LIBRARY).a 2> /dev/null
56 echo Building static library $@
57 $(AR) rc $@ $(filter %.opic,$^)
63 echo Compiling $< to $@
64 $(CXX) -c $(INLINEDEPFLAG) $(CPPFLAGS) $(CXXFLAGS) $(PICFLAGS) -o $@ $<
67 # Include the dependencies that are available
68 The_DFiles = $(wildcard $($(LOCAL)-DEP))
69 ifneq ($(words $(The_DFiles)),0)