ixgbe: fix Rx queue reset
[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 else
72 _CPU_LDFLAGS := $(CPU_LDFLAGS)
73 endif
74
75 O_TO_A = $(AR) crDs $(LIB) $(OBJS-y)
76 O_TO_A_STR = $(subst ','\'',$(O_TO_A)) #'# fix syntax highlight
77 O_TO_A_DISP = $(if $(V),"$(O_TO_A_STR)","  AR $(@)")
78 O_TO_A_CMD = "cmd_$@ = $(O_TO_A_STR)"
79 O_TO_A_DO = @set -e; \
80         echo $(O_TO_A_DISP); \
81         $(O_TO_A) && \
82         echo $(O_TO_A_CMD) > $(call exe2cmd,$(@))
83
84 O_TO_S = $(LD) $(_CPU_LDFLAGS) -shared $(OBJS-y) -Wl,-soname,$(LIB) -o $(LIB)
85 O_TO_S_STR = $(subst ','\'',$(O_TO_S)) #'# fix syntax highlight
86 O_TO_S_DISP = $(if $(V),"$(O_TO_S_STR)","  LD $(@)")
87 O_TO_S_DO = @set -e; \
88         echo $(O_TO_S_DISP); \
89         $(O_TO_S) && \
90         echo $(O_TO_S_CMD) > $(call exe2cmd,$(@))
91
92 ifeq ($(CONFIG_RTE_BUILD_SHARED_LIB),n)
93 O_TO_C = $(AR) crus $(LIB_ONE) $(OBJS-y)
94 O_TO_C_STR = $(subst ','\'',$(O_TO_C)) #'# fix syntax highlight
95 O_TO_C_DISP = $(if $(V),"$(O_TO_C_STR)","  AR_C $(@)")
96 O_TO_C_DO = @set -e; \
97         $(lib_dir) \
98         $(copy_obj)
99 else
100 O_TO_C = $(LD) -shared $(OBJS-y) -o $(LIB_ONE)
101 O_TO_C_STR = $(subst ','\'',$(O_TO_C)) #'# fix syntax highlight
102 O_TO_C_DISP = $(if $(V),"$(O_TO_C_STR)","  LD_C $(@)")
103 O_TO_C_DO = @set -e; \
104         $(lib_dir) \
105         $(copy_obj)
106 endif
107
108 copy_obj = cp -f $(OBJS-y) $(RTE_OUTPUT)/build/lib;
109 lib_dir = [ -d $(RTE_OUTPUT)/lib ] || mkdir -p $(RTE_OUTPUT)/lib;
110 -include .$(LIB).cmd
111
112 #
113 # Archive objects in .a file if needed
114 #
115 ifeq ($(CONFIG_RTE_BUILD_SHARED_LIB),y)
116 $(LIB): $(OBJS-y) $(DEP_$(LIB)) FORCE
117 ifeq ($(LIBABIVER),)
118         @echo "Must Specify a $(LIB) ABI version"
119         @false
120 endif
121         @[ -d $(dir $@) ] || mkdir -p $(dir $@)
122         $(if $(D),\
123                 @echo -n "$< -> $@ " ; \
124                 echo -n "file_missing=$(call boolean,$(file_missing)) " ; \
125                 echo -n "cmdline_changed=$(call boolean,$(call cmdline_changed,$(O_TO_S_STR))) " ; \
126                 echo -n "depfile_missing=$(call boolean,$(depfile_missing)) " ; \
127                 echo "depfile_newer=$(call boolean,$(depfile_newer)) ")
128         $(if $(or \
129                 $(file_missing),\
130                 $(call cmdline_changed,$(O_TO_S_STR)),\
131                 $(depfile_missing),\
132                 $(depfile_newer)),\
133                 $(O_TO_S_DO))
134
135 ifeq ($(CONFIG_RTE_BUILD_COMBINE_LIBS),y)
136         $(if $(or \
137         $(file_missing),\
138         $(call cmdline_changed,$(O_TO_C_STR)),\
139         $(depfile_missing),\
140         $(depfile_newer)),\
141         $(O_TO_C_DO))
142 endif
143 else
144 $(LIB): $(OBJS-y) $(DEP_$(LIB)) FORCE
145         @[ -d $(dir $@) ] || mkdir -p $(dir $@)
146         $(if $(D),\
147             @echo -n "$< -> $@ " ; \
148             echo -n "file_missing=$(call boolean,$(file_missing)) " ; \
149             echo -n "cmdline_changed=$(call boolean,$(call cmdline_changed,$(O_TO_A_STR))) " ; \
150             echo -n "depfile_missing=$(call boolean,$(depfile_missing)) " ; \
151             echo "depfile_newer=$(call boolean,$(depfile_newer)) ")
152         $(if $(or \
153             $(file_missing),\
154             $(call cmdline_changed,$(O_TO_A_STR)),\
155             $(depfile_missing),\
156             $(depfile_newer)),\
157             $(O_TO_A_DO))
158 ifeq ($(CONFIG_RTE_BUILD_COMBINE_LIBS),y)
159         $(if $(or \
160         $(file_missing),\
161         $(call cmdline_changed,$(O_TO_C_STR)),\
162         $(depfile_missing),\
163         $(depfile_newer)),\
164         $(O_TO_C_DO))
165 endif
166 endif
167
168 #
169 # install lib in $(RTE_OUTPUT)/lib
170 #
171 $(RTE_OUTPUT)/lib/$(LIB): $(LIB)
172         @echo "  INSTALL-LIB $(LIB)"
173         @[ -d $(RTE_OUTPUT)/lib ] || mkdir -p $(RTE_OUTPUT)/lib
174         $(Q)cp -f $(LIB) $(RTE_OUTPUT)/lib
175 ifeq ($(CONFIG_RTE_BUILD_SHARED_LIB),y)
176 ifeq ($(CONFIG_RTE_NEXT_ABI),y)
177         $(Q)ln -s -f $< $(basename $(basename $@))
178 else
179         $(Q)ln -s -f $< $(basename $@)
180 endif
181 endif
182
183 #
184 # Clean all generated files
185 #
186 .PHONY: clean
187 clean: _postclean
188
189 .PHONY: doclean
190 doclean:
191         $(Q)rm -rf $(LIB) $(OBJS-all) $(DEPS-all) $(DEPSTMP-all) \
192           $(CMDS-all) $(INSTALL-FILES-all)
193         $(Q)rm -f $(_BUILD_TARGETS) $(_INSTALL_TARGETS) $(_CLEAN_TARGETS)
194
195 include $(RTE_SDK)/mk/internal/rte.compile-post.mk
196 include $(RTE_SDK)/mk/internal/rte.install-post.mk
197 include $(RTE_SDK)/mk/internal/rte.clean-post.mk
198 include $(RTE_SDK)/mk/internal/rte.build-post.mk
199 include $(RTE_SDK)/mk/internal/rte.depdirs-post.mk
200
201 .PHONY: FORCE
202 FORCE: