3 # Copyright(c) 2010-2014 Intel Corporation. All rights reserved.
6 # Redistribution and use in source and binary forms, with or without
7 # modification, are permitted provided that the following conditions
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
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.
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.
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
38 # VPATH contains at least SRCDIR
41 ifeq ($(RTE_BUILD_SHARED_LIB),y)
42 LIB := $(patsubst %.a,%.so,$(LIB))
46 _INSTALL = $(INSTALL-FILES-y) $(SYMLINK-FILES-y) $(RTE_OUTPUT)/lib/$(LIB)
53 install: build _postinstall
60 exe2cmd = $(strip $(call dotfile,$(patsubst %,%.cmd,$(1))))
62 ifeq ($(LINK_USING_CC),1)
63 # Override the definition of LD here, since we're linking with CC
67 O_TO_A = $(AR) crus $(LIB) $(OBJS-y)
68 O_TO_A_STR = $(subst ','\'',$(O_TO_A)) #'# fix syntax highlight
69 O_TO_A_DISP = $(if $(V),"$(O_TO_A_STR)"," AR $(@)")
70 O_TO_A_CMD = "cmd_$@ = $(O_TO_A_STR)"
71 O_TO_A_DO = @set -e; \
72 echo $(O_TO_A_DISP); \
74 echo $(O_TO_A_CMD) > $(call exe2cmd,$(@))
76 O_TO_S = $(LD) $(CPU_LDFLAGS) -z muldefs -shared $(OBJS-y) -o $(LIB)
77 O_TO_S_STR = $(subst ','\'',$(O_TO_S)) #'# fix syntax highlight
78 O_TO_S_DISP = $(if $(V),"$(O_TO_S_STR)"," LD $(@)")
79 O_TO_S_DO = @set -e; \
80 echo $(O_TO_S_DISP); \
82 echo $(O_TO_S_CMD) > $(call exe2cmd,$(@))
84 ifeq ($(RTE_BUILD_SHARED_LIB),n)
85 O_TO_C = $(AR) crus $(LIB_ONE) $(OBJS-y)
86 O_TO_C_STR = $(subst ','\'',$(O_TO_C)) #'# fix syntax highlight
87 O_TO_C_DISP = $(if $(V),"$(O_TO_C_STR)"," AR_C $(@)")
88 O_TO_C_DO = @set -e; \
92 O_TO_C = $(LD) -z muldefs -shared $(OBJS-y) -o $(LIB_ONE)
93 O_TO_C_STR = $(subst ','\'',$(O_TO_C)) #'# fix syntax highlight
94 O_TO_C_DISP = $(if $(V),"$(O_TO_C_STR)"," LD_C $(@)")
95 O_TO_C_DO = @set -e; \
100 copy_obj = cp -f $(OBJS-y) $(RTE_OUTPUT)/build/lib;
101 lib_dir = [ -d $(RTE_OUTPUT)/lib ] || mkdir -p $(RTE_OUTPUT)/lib;
105 # Archive objects in .a file if needed
107 ifeq ($(RTE_BUILD_SHARED_LIB),y)
108 $(LIB): $(OBJS-y) $(DEP_$(LIB)) FORCE
109 @[ -d $(dir $@) ] || mkdir -p $(dir $@)
111 @echo -n "$< -> $@ " ; \
112 echo -n "file_missing=$(call boolean,$(file_missing)) " ; \
113 echo -n "cmdline_changed=$(call boolean,$(call cmdline_changed,$(O_TO_S_STR))) " ; \
114 echo -n "depfile_missing=$(call boolean,$(depfile_missing)) " ; \
115 echo "depfile_newer=$(call boolean,$(depfile_newer)) ")
118 $(call cmdline_changed,$(O_TO_S_STR)),\
122 ifeq ($(RTE_BUILD_COMBINE_LIBS),y)
125 $(call cmdline_changed,$(O_TO_C_STR)),\
131 $(LIB): $(OBJS-y) $(DEP_$(LIB)) FORCE
132 @[ -d $(dir $@) ] || mkdir -p $(dir $@)
134 @echo -n "$< -> $@ " ; \
135 echo -n "file_missing=$(call boolean,$(file_missing)) " ; \
136 echo -n "cmdline_changed=$(call boolean,$(call cmdline_changed,$(O_TO_A_STR))) " ; \
137 echo -n "depfile_missing=$(call boolean,$(depfile_missing)) " ; \
138 echo "depfile_newer=$(call boolean,$(depfile_newer)) ")
141 $(call cmdline_changed,$(O_TO_A_STR)),\
145 ifeq ($(RTE_BUILD_COMBINE_LIBS),y)
148 $(call cmdline_changed,$(O_TO_C_STR)),\
156 # install lib in $(RTE_OUTPUT)/lib
158 $(RTE_OUTPUT)/lib/$(LIB): $(LIB)
159 @echo " INSTALL-LIB $(LIB)"
160 @[ -d $(RTE_OUTPUT)/lib ] || mkdir -p $(RTE_OUTPUT)/lib
161 $(Q)cp -f $(LIB) $(RTE_OUTPUT)/lib
164 # Clean all generated files
171 $(Q)rm -rf $(LIB) $(OBJS-all) $(DEPS-all) $(DEPSTMP-all) \
172 $(CMDS-all) $(INSTALL-FILES-all)
173 $(Q)rm -f $(_BUILD_TARGETS) $(_INSTALL_TARGETS) $(_CLEAN_TARGETS)
175 include $(RTE_SDK)/mk/internal/rte.compile-post.mk
176 include $(RTE_SDK)/mk/internal/rte.install-post.mk
177 include $(RTE_SDK)/mk/internal/rte.clean-post.mk
178 include $(RTE_SDK)/mk/internal/rte.build-post.mk
179 include $(RTE_SDK)/mk/internal/rte.depdirs-post.mk