Shared libaries only for linux
[ntk/apt.git] / buildlib / library.mak
CommitLineData
094a497d
AL
1# -*- make -*-
2
3# This creates a shared library.
4
5# Input
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
11
12# All output is writtin to .opic files in the build directory to
13# signify the PIC output.
14
15# See defaults.mak for information about LOCAL
16
17# Some local definitions
18LOCAL := lib$(LIBRARY).so.$(MAJOR).$(MINOR)
19$(LOCAL)-OBJS := $(addprefix $(OBJ)/,$(addsuffix .opic,$(notdir $(basename $(SOURCE)))))
e1b1ae50 20$(LOCAL)-DEP := $(addprefix $(DEP)/,$(addsuffix .opic.d,$(notdir $(basename $(SOURCE)))))
094a497d
AL
21$(LOCAL)-HEADERS := $(addprefix $(INCLUDE)/,$(HEADERS))
22$(LOCAL)-SONAME := lib$(LIBRARY).so.$(MAJOR)
880e9be4 23$(LOCAL)-SLIBS := $(SLIBS)
3763d79d 24$(LOCAL)-LIBRARY := $(LIBRARY)
094a497d
AL
25
26# Install the command hooks
27headers: $($(LOCAL)-HEADERS)
28library: $(LIB)/lib$(LIBRARY).so $(LIB)/lib$(LIBRARY).so.$(MAJOR)
29clean: clean/$(LOCAL)
30veryclean: veryclean/$(LOCAL)
31
32# The clean rules
33.PHONY: clean/$(LOCAL) veryclean/$(LOCAL)
34clean/$(LOCAL):
35 -rm -f $($(@F)-OBJS) $($(@F)-DEP)
36veryclean/$(LOCAL): clean/$(LOCAL)
e1b1ae50 37 -rm -f $($(@F)-HEADERS) $(LIB)/lib$($(@F)-LIBRARY).so*
094a497d
AL
38
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)
42 ln -sf $(<F) $@
43$(LIB)/lib$(LIBRARY).so: $(LIB)/lib$(LIBRARY).so.$(MAJOR).$(MINOR)
44 ln -sf $(<F) $@
45
46# The binary build rule
47$(LIB)/lib$(LIBRARY).so.$(MAJOR).$(MINOR): $($(LOCAL)-HEADERS) $($(LOCAL)-OBJS)
ee989411 48 -rm -f $(LIB)/lib$($(@F)-LIBRARY).so* 2> /dev/null
094a497d 49 echo Building shared library $@
70fbac25
AL
50 $(CXX) $(CXXFLAGS) $(LDFLAGS) $(PICFLAGS) $(LFLAGS) $(LFLAGS_SO)\
51 -o $@ $(SONAME_MAGIC)$($(@F)-SONAME) -shared \
52 $(filter %.opic,$^) \
53 $($(@F)-SLIBS)
094a497d
AL
54
55# Compilation rules
56vpath %.cc $(SUBDIRS)
57$(OBJ)/%.opic: %.cc
58 echo Compiling $< to $@
59 $(CXX) -c $(INLINEDEPFLAG) $(CPPFLAGS) $(CXXFLAGS) $(PICFLAGS) -o $@ $<
60 $(DoDep)
61
62# Include the dependencies that are available
63The_DFiles = $(wildcard $($(LOCAL)-DEP))
64ifneq ($(words $(The_DFiles)),0)
65include $(The_DFiles)
66endif