mk: optimize directory dependencies
[dpdk.git] / mk / rte.shared.mk
1 # BSD LICENSE
2 #
3 # Copyright 2012-2013 6WIND S.A.
4 #
5 # Redistribution and use in source and binary forms, with or without
6 # modification, are permitted provided that the following conditions
7 # are met:
8 #
9 #   * Redistributions of source code must retain the above copyright
10 #     notice, this list of conditions and the following disclaimer.
11 #   * Redistributions in binary form must reproduce the above copyright
12 #     notice, this list of conditions and the following disclaimer in
13 #     the documentation and/or other materials provided with the
14 #     distribution.
15 #   * Neither the name of 6WIND S.A. nor the names of its
16 #     contributors may be used to endorse or promote products derived
17 #     from this software without specific prior written permission.
18 #
19 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
20 # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
21 # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
22 # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
23 # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
24 # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
25 # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
26 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
27 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30
31 include $(RTE_SDK)/mk/internal/rte.compile-pre.mk
32 include $(RTE_SDK)/mk/internal/rte.install-pre.mk
33 include $(RTE_SDK)/mk/internal/rte.clean-pre.mk
34 include $(RTE_SDK)/mk/internal/rte.build-pre.mk
35
36 # VPATH contains at least SRCDIR
37 VPATH += $(SRCDIR)
38
39 _BUILD = $(SHARED)
40 _INSTALL = $(INSTALL-FILES-y) $(SYMLINK-FILES-y) $(RTE_OUTPUT)/lib/$(SHARED)
41 _CLEAN = doclean
42
43 # Set fPIC in CFLAGS for .so generation
44 CFLAGS += -fPIC
45
46 .PHONY: all
47 all: install
48
49 .PHONY: install
50 install: build _postinstall
51
52 _postinstall: build
53
54 .PHONY: build
55 build: _postbuild
56
57 exe2cmd = $(strip $(call dotfile,$(patsubst %,%.cmd,$(1))))
58
59 ifeq ($(LINK_USING_CC),1)
60 override EXTRA_LDFLAGS := $(call linkerprefix,$(EXTRA_LDFLAGS))
61 O_TO_SO = $(CC) $(call linkerprefix,$(LDFLAGS)) $(LDFLAGS_$(@)) $(EXTRA_LDFLAGS) \
62         -shared -o $@ $(OBJS-y) $(call linkerprefix,$(LDLIBS))
63 else
64 O_TO_SO = $(LD) $(LDFLAGS) $(LDFLAGS_$(@)) $(EXTRA_LDFLAGS) \
65         -shared -o $@ $(OBJS-y) $(LDLIBS)
66 endif
67
68 O_TO_SO_STR = $(subst ','\'',$(O_TO_SO)) #'# fix syntax highlight
69 O_TO_SO_DISP = $(if $(V),"$(O_TO_SO_STR)","  LD $(@)")
70 O_TO_SO_CMD = "cmd_$@ = $(O_TO_SO_STR)"
71 O_TO_SO_DO = @set -e; \
72         echo $(O_TO_SO_DISP); \
73         $(O_TO_SO) && \
74         echo $(O_TO_SO_CMD) > $(call exe2cmd,$(@))
75
76 -include .$(SHARED).cmd
77
78 # path where libraries are retrieved
79 LDLIBS_PATH := $(subst -Wl$(comma)-L,,$(filter -Wl$(comma)-L%,$(LDLIBS)))
80 LDLIBS_PATH += $(subst -L,,$(filter -L%,$(LDLIBS)))
81
82 # list of .a files that are linked to this application
83 LDLIBS_NAMES := $(patsubst -l%,lib%.a,$(filter -l%,$(LDLIBS)))
84 LDLIBS_NAMES += $(patsubst -Wl$(comma)-l%,lib%.a,$(filter -Wl$(comma)-l%,$(LDLIBS)))
85
86 # list of found libraries files (useful for deps). If not found, the
87 # library is silently ignored and dep won't be checked
88 LDLIBS_FILES := $(wildcard $(foreach dir,$(LDLIBS_PATH),\
89         $(addprefix $(dir)/,$(LDLIBS_NAMES))))
90
91 #
92 # Archive objects in .so file if needed
93 #
94 $(SHARED): $(OBJS-y) $(LDLIBS_FILES) $(DEP_$(SHARED)) FORCE
95         @[ -d $(dir $@) ] || mkdir -p $(dir $@)
96         $(if $(D),\
97                 @echo -n "$< -> $@ " ; \
98                 echo -n "file_missing=$(call boolean,$(file_missing)) " ; \
99                 echo -n "cmdline_changed=$(call boolean,$(call cmdline_changed,$(O_TO_SO_STR))) " ; \
100                 echo -n "depfile_missing=$(call boolean,$(depfile_missing)) " ; \
101                 echo "depfile_newer=$(call boolean,$(depfile_newer)) ")
102         $(if $(or \
103                 $(file_missing),\
104                 $(call cmdline_changed,$(O_TO_SO_STR)),\
105                 $(depfile_missing),\
106                 $(depfile_newer)),\
107                 $(O_TO_SO_DO))
108
109 #
110 # install lib in $(RTE_OUTPUT)/lib
111 #
112 $(RTE_OUTPUT)/lib/$(SHARED): $(SHARED)
113         @echo "  INSTALL-SHARED $(SHARED)"
114         @[ -d $(RTE_OUTPUT)/lib ] || mkdir -p $(RTE_OUTPUT)/lib
115         $(Q)cp -f $(SHARED) $(RTE_OUTPUT)/lib
116
117 #
118 # Clean all generated files
119 #
120 .PHONY: clean
121 clean: _postclean
122
123 .PHONY: doclean
124 doclean:
125         $(Q)rm -rf $(SHARED) $(OBJS-all) $(DEPS-all) $(DEPSTMP-all) \
126           $(CMDS-all) $(INSTALL-FILES-all)
127         $(Q)rm -f $(_BUILD_TARGETS) $(_INSTALL_TARGETS) $(_CLEAN_TARGETS)
128
129 include $(RTE_SDK)/mk/internal/rte.compile-post.mk
130 include $(RTE_SDK)/mk/internal/rte.install-post.mk
131 include $(RTE_SDK)/mk/internal/rte.clean-post.mk
132 include $(RTE_SDK)/mk/internal/rte.build-post.mk
133
134 .PHONY: FORCE
135 FORCE: