06a151994d212cb33db2590312857ff52a0e1a90
[dpdk.git] / mk / rte.lib.mk
1 #   BSD LICENSE
2 #
3 #   Copyright(c) 2010-2014 Intel Corporation. All rights reserved.
4 #   All rights reserved.
5 #
6 #   Redistribution and use in source and binary forms, with or without
7 #   modification, are permitted provided that the following conditions
8 #   are met:
9 #
10 #     * Redistributions of source code must retain the above copyright
11 #       notice, this list of conditions and the following disclaimer.
12 #     * Redistributions in binary form must reproduce the above copyright
13 #       notice, this list of conditions and the following disclaimer in
14 #       the documentation and/or other materials provided with the
15 #       distribution.
16 #     * Neither the name of Intel Corporation nor the names of its
17 #       contributors may be used to endorse or promote products derived
18 #       from this software without specific prior written permission.
19 #
20 #   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21 #   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22 #   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23 #   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
24 #   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25 #   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
26 #   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27 #   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28 #   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29 #   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30 #   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31
32 include $(RTE_SDK)/mk/internal/rte.compile-pre.mk
33 include $(RTE_SDK)/mk/internal/rte.install-pre.mk
34 include $(RTE_SDK)/mk/internal/rte.clean-pre.mk
35 include $(RTE_SDK)/mk/internal/rte.build-pre.mk
36 include $(RTE_SDK)/mk/internal/rte.depdirs-pre.mk
37
38 # VPATH contains at least SRCDIR
39 VPATH += $(SRCDIR)
40
41 ifeq ($(CONFIG_RTE_BUILD_SHARED_LIB),y)
42 LIB := $(patsubst %.a,%.so.$(LIBABIVER),$(LIB))
43 ifeq ($(CONFIG_RTE_NEXT_ABI),y)
44 LIB := $(LIB).1
45 endif
46 CPU_LDFLAGS += --version-script=$(SRCDIR)/$(EXPORT_MAP)
47 endif
48
49
50 _BUILD = $(LIB)
51 _INSTALL = $(INSTALL-FILES-y) $(SYMLINK-FILES-y) $(RTE_OUTPUT)/lib/$(LIB)
52 _CLEAN = doclean
53
54 .PHONY: all
55 all: install
56
57 .PHONY: install
58 install: build _postinstall
59
60 _postinstall: build
61
62 .PHONY: build
63 build: _postbuild
64
65 exe2cmd = $(strip $(call dotfile,$(patsubst %,%.cmd,$(1))))
66
67 ifeq ($(LINK_USING_CC),1)
68 # Override the definition of LD here, since we're linking with CC
69 LD := $(CC) $(CPU_CFLAGS)
70 _CPU_LDFLAGS := $(call linkerprefix,$(CPU_LDFLAGS))
71 override EXTRA_LDFLAGS := $(call linkerprefix,$(EXTRA_LDFLAGS))
72 else
73 _CPU_LDFLAGS := $(CPU_LDFLAGS)
74 endif
75
76 O_TO_A = $(AR) crDs $(LIB) $(OBJS-y)
77 O_TO_A_STR = $(subst ','\'',$(O_TO_A)) #'# fix syntax highlight
78 O_TO_A_DISP = $(if $(V),"$(O_TO_A_STR)","  AR $(@)")
79 O_TO_A_CMD = "cmd_$@ = $(O_TO_A_STR)"
80 O_TO_A_DO = @set -e; \
81         echo $(O_TO_A_DISP); \
82         $(O_TO_A) && \
83         echo $(O_TO_A_CMD) > $(call exe2cmd,$(@))
84
85 O_TO_S = $(LD) $(_CPU_LDFLAGS) $(EXTRA_LDFLAGS) $(LDLIBS) -shared $(OBJS-y) \
86          -Wl,-soname,$(LIB) -o $(LIB)
87 O_TO_S_STR = $(subst ','\'',$(O_TO_S)) #'# fix syntax highlight
88 O_TO_S_DISP = $(if $(V),"$(O_TO_S_STR)","  LD $(@)")
89 O_TO_S_DO = @set -e; \
90         echo $(O_TO_S_DISP); \
91         $(O_TO_S) && \
92         echo $(O_TO_S_CMD) > $(call exe2cmd,$(@))
93
94 ifeq ($(CONFIG_RTE_BUILD_SHARED_LIB),n)
95 O_TO_C = $(AR) crus $(LIB_ONE) $(OBJS-y)
96 O_TO_C_STR = $(subst ','\'',$(O_TO_C)) #'# fix syntax highlight
97 O_TO_C_DISP = $(if $(V),"$(O_TO_C_STR)","  AR_C $(@)")
98 O_TO_C_DO = @set -e; \
99         $(lib_dir) \
100         $(copy_obj)
101 else
102 O_TO_C = $(LD) -shared $(OBJS-y) -o $(LIB_ONE)
103 O_TO_C_STR = $(subst ','\'',$(O_TO_C)) #'# fix syntax highlight
104 O_TO_C_DISP = $(if $(V),"$(O_TO_C_STR)","  LD_C $(@)")
105 O_TO_C_DO = @set -e; \
106         $(lib_dir) \
107         $(copy_obj)
108 endif
109
110 copy_obj = cp -f $(OBJS-y) $(RTE_OUTPUT)/build/lib;
111 lib_dir = [ -d $(RTE_OUTPUT)/lib ] || mkdir -p $(RTE_OUTPUT)/lib;
112 -include .$(LIB).cmd
113
114 #
115 # Archive objects in .a file if needed
116 #
117 ifeq ($(CONFIG_RTE_BUILD_SHARED_LIB),y)
118 $(LIB): $(OBJS-y) $(DEP_$(LIB)) FORCE
119 ifeq ($(LIBABIVER),)
120         @echo "Must Specify a $(LIB) ABI version"
121         @false
122 endif
123         @[ -d $(dir $@) ] || mkdir -p $(dir $@)
124         $(if $(D),\
125                 @echo -n "$< -> $@ " ; \
126                 echo -n "file_missing=$(call boolean,$(file_missing)) " ; \
127                 echo -n "cmdline_changed=$(call boolean,$(call cmdline_changed,$(O_TO_S_STR))) " ; \
128                 echo -n "depfile_missing=$(call boolean,$(depfile_missing)) " ; \
129                 echo "depfile_newer=$(call boolean,$(depfile_newer)) ")
130         $(if $(or \
131                 $(file_missing),\
132                 $(call cmdline_changed,$(O_TO_S_STR)),\
133                 $(depfile_missing),\
134                 $(depfile_newer)),\
135                 $(O_TO_S_DO))
136
137 ifeq ($(CONFIG_RTE_BUILD_COMBINE_LIBS),y)
138         $(if $(or \
139         $(file_missing),\
140         $(call cmdline_changed,$(O_TO_C_STR)),\
141         $(depfile_missing),\
142         $(depfile_newer)),\
143         $(O_TO_C_DO))
144 endif
145 else
146 $(LIB): $(OBJS-y) $(DEP_$(LIB)) FORCE
147         @[ -d $(dir $@) ] || mkdir -p $(dir $@)
148         $(if $(D),\
149             @echo -n "$< -> $@ " ; \
150             echo -n "file_missing=$(call boolean,$(file_missing)) " ; \
151             echo -n "cmdline_changed=$(call boolean,$(call cmdline_changed,$(O_TO_A_STR))) " ; \
152             echo -n "depfile_missing=$(call boolean,$(depfile_missing)) " ; \
153             echo "depfile_newer=$(call boolean,$(depfile_newer)) ")
154         $(if $(or \
155             $(file_missing),\
156             $(call cmdline_changed,$(O_TO_A_STR)),\
157             $(depfile_missing),\
158             $(depfile_newer)),\
159             $(O_TO_A_DO))
160 ifeq ($(CONFIG_RTE_BUILD_COMBINE_LIBS),y)
161         $(if $(or \
162         $(file_missing),\
163         $(call cmdline_changed,$(O_TO_C_STR)),\
164         $(depfile_missing),\
165         $(depfile_newer)),\
166         $(O_TO_C_DO))
167 endif
168 endif
169
170 #
171 # install lib in $(RTE_OUTPUT)/lib
172 #
173 $(RTE_OUTPUT)/lib/$(LIB): $(LIB)
174         @echo "  INSTALL-LIB $(LIB)"
175         @[ -d $(RTE_OUTPUT)/lib ] || mkdir -p $(RTE_OUTPUT)/lib
176         $(Q)cp -f $(LIB) $(RTE_OUTPUT)/lib
177 ifeq ($(CONFIG_RTE_BUILD_SHARED_LIB),y)
178 ifeq ($(CONFIG_RTE_NEXT_ABI),y)
179         $(Q)ln -s -f $< $(basename $(basename $@))
180 else
181         $(Q)ln -s -f $< $(basename $@)
182 endif
183 endif
184
185 #
186 # Clean all generated files
187 #
188 .PHONY: clean
189 clean: _postclean
190
191 .PHONY: doclean
192 doclean:
193         $(Q)rm -rf $(LIB) $(OBJS-all) $(DEPS-all) $(DEPSTMP-all) \
194           $(CMDS-all) $(INSTALL-FILES-all)
195         $(Q)rm -f $(_BUILD_TARGETS) $(_INSTALL_TARGETS) $(_CLEAN_TARGETS)
196
197 include $(RTE_SDK)/mk/internal/rte.compile-post.mk
198 include $(RTE_SDK)/mk/internal/rte.install-post.mk
199 include $(RTE_SDK)/mk/internal/rte.clean-post.mk
200 include $(RTE_SDK)/mk/internal/rte.build-post.mk
201 include $(RTE_SDK)/mk/internal/rte.depdirs-post.mk
202
203 .PHONY: FORCE
204 FORCE: