]>
Commit | Line | Data |
---|---|---|
da6ee469 JF |
1 | # -*- make -*- |
2 | ||
3 | # This creates a static 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 | ||
10 | # All output is writtin to .o files in the build directory | |
11 | ||
12 | # See defaults.mak for information about LOCAL | |
13 | ||
14 | # Some local definitions | |
15 | LOCAL := lib$(LIBRARY).a | |
16 | $(LOCAL)-OBJS := $(addprefix $(OBJ)/,$(addsuffix .o,$(notdir $(basename $(SOURCE))))) | |
17 | $(LOCAL)-DEP := $(addprefix $(DEP)/,$(addsuffix .o.d,$(notdir $(basename $(SOURCE))))) | |
18 | $(LOCAL)-HEADERS := $(addprefix $(INCLUDE)/,$(HEADERS)) | |
19 | $(LOCAL)-LIB := $(LIB)/lib$(LIBRARY).a | |
20 | ||
21 | # Install the command hooks | |
22 | headers: $($(LOCAL)-HEADERS) | |
23 | library: $($(LOCAL)-LIB) | |
24 | clean: clean/$(LOCAL) | |
25 | veryclean: veryclean/$(LOCAL) | |
26 | ||
27 | # Make Directories | |
28 | MKDIRS += $(OBJ) $(DEP) $(LIB) $(dir $($(LOCAL)-HEADERS)) | |
29 | ||
30 | # The clean rules | |
31 | .PHONY: clean/$(LOCAL) veryclean/$(LOCAL) | |
32 | clean/$(LOCAL): | |
33 | -rm -f $($(@F)-OBJS) $($(@F)-DEP) | |
34 | veryclean/$(LOCAL): clean/$(LOCAL) | |
35 | -rm -f $($(@F)-HEADERS) $($(@F)-LIB) | |
36 | ||
37 | # Build rules for the two symlinks | |
38 | .PHONY: $($(LOCAL)-LIB) | |
39 | ||
40 | # The binary build rule | |
41 | $($(LOCAL)-LIB): $($(LOCAL)-HEADERS) $($(LOCAL)-OBJS) | |
42 | echo Building library $@ | |
43 | -rm $@ > /dev/null 2>&1 | |
44 | $(AR) cq $@ $(filter %.o,$^) | |
45 | ifneq ($(words $(RANLIB)),0) | |
46 | $(RANLIB) $@ | |
47 | endif | |
48 | ||
49 | # Compilation rules | |
50 | vpath %.cc $(SUBDIRS) | |
51 | $(OBJ)/%.o: %.cc | |
52 | echo Compiling $< to $@ | |
53 | $(CXX) -c $(INLINEDEPFLAG) $(CPPFLAGS) $(CXXFLAGS) -o $@ $< | |
54 | $(DoDep) | |
55 | ||
56 | # Include the dependencies that are available | |
57 | The_DFiles = $(wildcard $($(LOCAL)-DEP)) | |
58 | ifneq ($(words $(The_DFiles)),0) | |
59 | include $(The_DFiles) | |
60 | endif |