mk: remove uio suffix from virtio pmd
[dpdk.git] / mk / rte.app.mk
1 #   BSD LICENSE
2 #
3 #   Copyright(c) 2010-2014 Intel Corporation. All rights reserved.
4 #   Copyright(c) 2014 6WIND S.A.
5 #   All rights reserved.
6 #
7 #   Redistribution and use in source and binary forms, with or without
8 #   modification, are permitted provided that the following conditions
9 #   are met:
10 #
11 #     * Redistributions of source code must retain the above copyright
12 #       notice, this list of conditions and the following disclaimer.
13 #     * Redistributions in binary form must reproduce the above copyright
14 #       notice, this list of conditions and the following disclaimer in
15 #       the documentation and/or other materials provided with the
16 #       distribution.
17 #     * Neither the name of Intel Corporation nor the names of its
18 #       contributors may be used to endorse or promote products derived
19 #       from this software without specific prior written permission.
20 #
21 #   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22 #   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23 #   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
24 #   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
25 #   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26 #   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
27 #   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28 #   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29 #   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30 #   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31 #   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32
33 include $(RTE_SDK)/mk/internal/rte.compile-pre.mk
34 include $(RTE_SDK)/mk/internal/rte.install-pre.mk
35 include $(RTE_SDK)/mk/internal/rte.clean-pre.mk
36 include $(RTE_SDK)/mk/internal/rte.build-pre.mk
37 include $(RTE_SDK)/mk/internal/rte.depdirs-pre.mk
38
39 # VPATH contains at least SRCDIR
40 VPATH += $(SRCDIR)
41
42 _BUILD = $(APP)
43 _INSTALL = $(INSTALL-FILES-y) $(SYMLINK-FILES-y)
44 _INSTALL += $(RTE_OUTPUT)/app/$(APP) $(RTE_OUTPUT)/app/$(APP).map
45 POSTINSTALL += target-appinstall
46 _CLEAN = doclean
47 POSTCLEAN += target-appclean
48
49 ifeq ($(NO_LDSCRIPT),)
50 LDSCRIPT = $(RTE_LDSCRIPT)
51 endif
52
53 # default path for libs
54 LDLIBS += -L$(RTE_SDK_BIN)/lib
55
56 #
57 # Include libraries depending on config if NO_AUTOLIBS is not set
58 # Order is important: from higher level to lower level
59 #
60 ifeq ($(NO_AUTOLIBS),)
61
62 LDLIBS += --whole-archive
63
64 ifeq ($(CONFIG_RTE_BUILD_COMBINE_LIBS),y)
65 LDLIBS += -l$(RTE_LIBNAME)
66 endif
67
68 ifeq ($(CONFIG_RTE_BUILD_COMBINE_LIBS),n)
69
70 ifeq ($(CONFIG_RTE_LIBRTE_DISTRIBUTOR),y)
71 LDLIBS += -lrte_distributor
72 endif
73
74 ifeq ($(CONFIG_RTE_LIBRTE_REORDER),y)
75 LDLIBS += -lrte_reorder
76 endif
77
78 ifeq ($(CONFIG_RTE_LIBRTE_KNI),y)
79 ifeq ($(CONFIG_RTE_EXEC_ENV_LINUXAPP),y)
80 LDLIBS += -lrte_kni
81 endif
82 endif
83
84 ifeq ($(CONFIG_RTE_LIBRTE_IVSHMEM),y)
85 ifeq ($(CONFIG_RTE_EXEC_ENV_LINUXAPP),y)
86 LDLIBS += -lrte_ivshmem
87 endif
88 endif
89
90 ifeq ($(CONFIG_RTE_LIBRTE_PIPELINE),y)
91 LDLIBS += -lrte_pipeline
92 endif
93
94 ifeq ($(CONFIG_RTE_LIBRTE_TABLE),y)
95 LDLIBS += -lrte_table
96 endif
97
98 ifeq ($(CONFIG_RTE_LIBRTE_PORT),y)
99 LDLIBS += -lrte_port
100 endif
101
102 ifeq ($(CONFIG_RTE_LIBRTE_TIMER),y)
103 LDLIBS += -lrte_timer
104 endif
105
106 ifeq ($(CONFIG_RTE_LIBRTE_HASH),y)
107 LDLIBS += -lrte_hash
108 endif
109
110 ifeq ($(CONFIG_RTE_LIBRTE_JOBSTATS),y)
111 LDLIBS += -lrte_jobstats
112 endif
113
114 ifeq ($(CONFIG_RTE_LIBRTE_LPM),y)
115 LDLIBS += -lrte_lpm
116 endif
117
118 ifeq ($(CONFIG_RTE_LIBRTE_POWER),y)
119 LDLIBS += -lrte_power
120 endif
121
122 ifeq ($(CONFIG_RTE_LIBRTE_ACL),y)
123 LDLIBS += -lrte_acl
124 endif
125
126 ifeq ($(CONFIG_RTE_LIBRTE_METER),y)
127 LDLIBS += -lrte_meter
128 endif
129
130 ifeq ($(CONFIG_RTE_LIBRTE_SCHED),y)
131 LDLIBS += -lrte_sched
132 LDLIBS += -lm
133 LDLIBS += -lrt
134 endif
135
136 ifeq ($(CONFIG_RTE_LIBRTE_VHOST), y)
137 LDLIBS += -lrte_vhost
138 endif
139
140 endif # ! CONFIG_RTE_BUILD_COMBINE_LIBS
141
142 ifeq ($(CONFIG_RTE_LIBRTE_PMD_PCAP),y)
143 LDLIBS += -lpcap
144 endif
145
146 ifeq ($(CONFIG_RTE_LIBRTE_VHOST)$(CONFIG_RTE_LIBRTE_VHOST_USER),yn)
147 LDLIBS += -lfuse
148 endif
149
150 ifeq ($(CONFIG_RTE_LIBRTE_MLX4_PMD),y)
151 LDLIBS += -libverbs
152 endif
153
154 LDLIBS += --start-group
155
156 ifeq ($(CONFIG_RTE_BUILD_COMBINE_LIBS),n)
157
158 ifeq ($(CONFIG_RTE_LIBRTE_KVARGS),y)
159 LDLIBS += -lrte_kvargs
160 endif
161
162 ifeq ($(CONFIG_RTE_LIBRTE_MBUF),y)
163 LDLIBS += -lrte_mbuf
164 endif
165
166 ifeq ($(CONFIG_RTE_LIBRTE_IP_FRAG),y)
167 LDLIBS += -lrte_ip_frag
168 endif
169
170 ifeq ($(CONFIG_RTE_LIBRTE_ETHER),y)
171 LDLIBS += -lethdev
172 endif
173
174 ifeq ($(CONFIG_RTE_LIBRTE_MALLOC),y)
175 LDLIBS += -lrte_malloc
176 endif
177
178 ifeq ($(CONFIG_RTE_LIBRTE_MEMPOOL),y)
179 LDLIBS += -lrte_mempool
180 endif
181
182 ifeq ($(CONFIG_RTE_LIBRTE_RING),y)
183 LDLIBS += -lrte_ring
184 endif
185
186 ifeq ($(CONFIG_RTE_LIBRTE_EAL),y)
187 LDLIBS += -lrte_eal
188 endif
189
190 ifeq ($(CONFIG_RTE_LIBRTE_CMDLINE),y)
191 LDLIBS += -lrte_cmdline
192 endif
193
194 ifeq ($(CONFIG_RTE_LIBRTE_CFGFILE),y)
195 LDLIBS += -lrte_cfgfile
196 endif
197
198 ifeq ($(CONFIG_RTE_LIBRTE_PMD_BOND),y)
199 LDLIBS += -lrte_pmd_bond
200 endif
201
202 ifeq ($(CONFIG_RTE_LIBRTE_PMD_XENVIRT),y)
203 LDLIBS += -lrte_pmd_xenvirt
204 LDLIBS += -lxenstore
205 endif
206
207 ifeq ($(CONFIG_RTE_BUILD_SHARED_LIB),n)
208 # plugins (link only if static libraries)
209
210 ifeq ($(CONFIG_RTE_LIBRTE_VMXNET3_PMD),y)
211 LDLIBS += -lrte_pmd_vmxnet3_uio
212 endif
213
214 ifeq ($(CONFIG_RTE_LIBRTE_VIRTIO_PMD),y)
215 LDLIBS += -lrte_pmd_virtio
216 endif
217
218 ifeq ($(CONFIG_RTE_LIBRTE_ENIC_PMD),y)
219 LDLIBS += -lrte_pmd_enic
220 endif
221
222 ifeq ($(CONFIG_RTE_LIBRTE_I40E_PMD),y)
223 LDLIBS += -lrte_pmd_i40e
224 endif
225
226 ifeq ($(CONFIG_RTE_LIBRTE_FM10K_PMD),y)
227 LDLIBS += -lrte_pmd_fm10k
228 endif
229
230 ifeq ($(CONFIG_RTE_LIBRTE_IXGBE_PMD),y)
231 LDLIBS += -lrte_pmd_ixgbe
232 endif
233
234 ifeq ($(CONFIG_RTE_LIBRTE_E1000_PMD),y)
235 LDLIBS += -lrte_pmd_e1000
236 endif
237
238 ifeq ($(CONFIG_RTE_LIBRTE_MLX4_PMD),y)
239 LDLIBS += -lrte_pmd_mlx4
240 endif
241
242 ifeq ($(CONFIG_RTE_LIBRTE_PMD_RING),y)
243 LDLIBS += -lrte_pmd_ring
244 endif
245
246 ifeq ($(CONFIG_RTE_LIBRTE_PMD_PCAP),y)
247 LDLIBS += -lrte_pmd_pcap
248 endif
249
250 ifeq ($(CONFIG_RTE_LIBRTE_PMD_AF_PACKET),y)
251 LDLIBS += -lrte_pmd_af_packet
252 endif
253
254 endif # plugins
255
256 endif # ! CONFIG_RTE_BUILD_COMBINE_LIBS
257
258 LDLIBS += $(EXECENV_LDLIBS)
259
260 LDLIBS += --end-group
261
262 LDLIBS += --no-whole-archive
263
264 endif # ifeq ($(NO_AUTOLIBS),)
265
266 LDLIBS += $(CPU_LDLIBS)
267
268 .PHONY: all
269 all: install
270
271 .PHONY: install
272 install: build _postinstall
273
274 _postinstall: build
275
276 .PHONY: build
277 build: _postbuild
278
279 exe2cmd = $(strip $(call dotfile,$(patsubst %,%.cmd,$(1))))
280
281 ifeq ($(LINK_USING_CC),1)
282 override EXTRA_LDFLAGS := $(call linkerprefix,$(EXTRA_LDFLAGS))
283 O_TO_EXE = $(CC) $(CFLAGS) $(LDFLAGS_$(@)) \
284         -Wl,-Map=$(@).map,--cref -o $@ $(OBJS-y) $(call linkerprefix,$(LDFLAGS)) \
285         $(EXTRA_LDFLAGS) $(call linkerprefix,$(LDLIBS))
286 else
287 O_TO_EXE = $(LD) $(LDFLAGS) $(LDFLAGS_$(@)) $(EXTRA_LDFLAGS) \
288         -Map=$(@).map --cref -o $@ $(OBJS-y) $(LDLIBS)
289 endif
290 O_TO_EXE_STR = $(subst ','\'',$(O_TO_EXE)) #'# fix syntax highlight
291 O_TO_EXE_DISP = $(if $(V),"$(O_TO_EXE_STR)","  LD $(@)")
292 O_TO_EXE_CMD = "cmd_$@ = $(O_TO_EXE_STR)"
293 O_TO_EXE_DO = @set -e; \
294         echo $(O_TO_EXE_DISP); \
295         $(O_TO_EXE) && \
296         echo $(O_TO_EXE_CMD) > $(call exe2cmd,$(@))
297
298 -include .$(APP).cmd
299
300 # path where libraries are retrieved
301 LDLIBS_PATH := $(subst -Wl$(comma)-L,,$(filter -Wl$(comma)-L%,$(LDLIBS)))
302 LDLIBS_PATH += $(subst -L,,$(filter -L%,$(LDLIBS)))
303
304 # list of .a files that are linked to this application
305 LDLIBS_NAMES := $(patsubst -l%,lib%.a,$(filter -l%,$(LDLIBS)))
306 LDLIBS_NAMES += $(patsubst -Wl$(comma)-l%,lib%.a,$(filter -Wl$(comma)-l%,$(LDLIBS)))
307
308 # list of found libraries files (useful for deps). If not found, the
309 # library is silently ignored and dep won't be checked
310 LDLIBS_FILES := $(wildcard $(foreach dir,$(LDLIBS_PATH),\
311         $(addprefix $(dir)/,$(LDLIBS_NAMES))))
312
313 #
314 # Compile executable file if needed
315 #
316 $(APP): $(OBJS-y) $(LDLIBS_FILES) $(DEP_$(APP)) $(LDSCRIPT) FORCE
317         @[ -d $(dir $@) ] || mkdir -p $(dir $@)
318         $(if $(D),\
319                 @echo -n "$< -> $@ " ; \
320                 echo -n "file_missing=$(call boolean,$(file_missing)) " ; \
321                 echo -n "cmdline_changed=$(call boolean,$(call cmdline_changed,$(O_TO_EXE_STR))) " ; \
322                 echo -n "depfile_missing=$(call boolean,$(depfile_missing)) " ; \
323                 echo "depfile_newer=$(call boolean,$(depfile_newer)) ")
324         $(if $(or \
325                 $(file_missing),\
326                 $(call cmdline_changed,$(O_TO_EXE_STR)),\
327                 $(depfile_missing),\
328                 $(depfile_newer)),\
329                 $(O_TO_EXE_DO))
330
331 #
332 # install app in $(RTE_OUTPUT)/app
333 #
334 $(RTE_OUTPUT)/app/$(APP): $(APP)
335         @echo "  INSTALL-APP $(APP)"
336         @[ -d $(RTE_OUTPUT)/app ] || mkdir -p $(RTE_OUTPUT)/app
337         $(Q)cp -f $(APP) $(RTE_OUTPUT)/app
338
339 #
340 # install app map file in $(RTE_OUTPUT)/app
341 #
342 $(RTE_OUTPUT)/app/$(APP).map: $(APP)
343         @echo "  INSTALL-MAP $(APP).map"
344         @[ -d $(RTE_OUTPUT)/app ] || mkdir -p $(RTE_OUTPUT)/app
345         $(Q)cp -f $(APP).map $(RTE_OUTPUT)/app
346
347 #
348 # Clean all generated files
349 #
350 .PHONY: clean
351 clean: _postclean
352         $(Q)rm -f $(_BUILD_TARGETS) $(_INSTALL_TARGETS) $(_CLEAN_TARGETS)
353
354 .PHONY: doclean
355 doclean:
356         $(Q)rm -rf $(APP) $(OBJS-all) $(DEPS-all) $(DEPSTMP-all) \
357           $(CMDS-all) $(INSTALL-FILES-all) .$(APP).cmd
358
359
360 include $(RTE_SDK)/mk/internal/rte.compile-post.mk
361 include $(RTE_SDK)/mk/internal/rte.install-post.mk
362 include $(RTE_SDK)/mk/internal/rte.clean-post.mk
363 include $(RTE_SDK)/mk/internal/rte.build-post.mk
364 include $(RTE_SDK)/mk/internal/rte.depdirs-post.mk
365
366 ifneq ($(wildcard $(RTE_SDK)/mk/target/$(RTE_TARGET)/rte.app.mk),)
367 include $(RTE_SDK)/mk/target/$(RTE_TARGET)/rte.app.mk
368 else
369 include $(RTE_SDK)/mk/target/generic/rte.app.mk
370 endif
371
372 .PHONY: FORCE
373 FORCE: