meter: initial import
[dpdk.git] / mk / rte.app.mk
1 #   BSD LICENSE
2
3 #   Copyright(c) 2010-2013 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
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 ifeq ($(CONFIG_RTE_LIBRTE_KNI),y)
63 ifeq ($(CONFIG_RTE_EXEC_ENV_LINUXAPP),y)
64 LDLIBS += -lrte_kni
65 endif
66 endif
67
68 ifeq ($(CONFIG_RTE_LIBRTE_E1000_PMD),y)
69 LDLIBS += -lrte_pmd_e1000
70 endif
71
72 ifeq ($(CONFIG_RTE_LIBRTE_IXGBE_PMD),y)
73 LDLIBS += -lrte_pmd_ixgbe
74 endif
75
76 ifeq ($(CONFIG_RTE_LIBRTE_MBUF),y)
77 LDLIBS += -lrte_mbuf
78 endif
79
80 ifeq ($(CONFIG_RTE_LIBRTE_CMDLINE),y)
81 LDLIBS += -lrte_cmdline
82 endif
83
84 ifeq ($(CONFIG_RTE_LIBRTE_TIMER),y)
85 LDLIBS += -lrte_timer
86 endif
87
88 ifeq ($(CONFIG_RTE_LIBRTE_HASH),y)
89 LDLIBS += -lrte_hash
90 endif
91
92 ifeq ($(CONFIG_RTE_LIBRTE_LPM),y)
93 LDLIBS += -lrte_lpm
94 endif
95
96 ifeq ($(CONFIG_RTE_LIBRTE_POWER),y)
97 LDLIBS += -lrte_power
98 endif
99
100 ifeq ($(CONFIG_RTE_LIBRTE_PMAC),y)
101 LDLIBS += -lrte_pmac
102 endif
103
104 ifeq ($(CONFIG_RTE_LIBRTE_METER),y)
105 LDLIBS += -lrte_meter
106 endif
107
108 LDLIBS += --start-group
109
110 ifeq ($(CONFIG_RTE_LIBRTE_ETHER),y)
111 LDLIBS += -lethdev
112 endif
113
114 ifeq ($(CONFIG_RTE_LIBRTE_MALLOC),y)
115 LDLIBS += -lrte_malloc
116 endif
117
118 ifeq ($(CONFIG_RTE_LIBRTE_MEMPOOL),y)
119 LDLIBS += -lrte_mempool
120 endif
121
122 ifeq ($(CONFIG_RTE_LIBRTE_RING),y)
123 LDLIBS += -lrte_ring
124 endif
125
126 ifeq ($(CONFIG_RTE_LIBC),y)
127 LDLIBS += -lc
128 endif
129
130 ifeq ($(CONFIG_RTE_LIBGLOSS),y)
131 LDLIBS += -lgloss
132 endif
133
134 ifeq ($(CONFIG_RTE_LIBRTE_EAL),y)
135 LDLIBS += -lrte_eal
136 endif
137
138 LDLIBS += $(EXECENV_LDLIBS)
139
140 LDLIBS += --end-group
141
142 endif # ifeq ($(NO_AUTOLIBS),)
143
144 LDLIBS += $(CPU_LDLIBS)
145
146 .PHONY: all
147 all: install
148
149 .PHONY: install
150 install: build _postinstall
151
152 _postinstall: build
153
154 .PHONY: build
155 build: _postbuild
156
157 exe2cmd = $(strip $(call dotfile,$(patsubst %,%.cmd,$(1))))
158
159 ifeq ($(LINK_USING_CC),1)
160 comma := ,
161 LDLIBS := $(addprefix -Wl$(comma),$(LDLIBS))
162 LDFLAGS := $(addprefix -Wl$(comma),$(LDFLAGS))
163 EXTRA_LDFLAGS := $(addprefix -Wl$(comma),$(EXTRA_LDFLAGS))
164 O_TO_EXE = $(CC) $(CFLAGS) $(LDFLAGS_$(@)) \
165         -Wl,-Map=$(@).map,--cref -o $@ $(OBJS-y) $(LDFLAGS) $(EXTRA_LDFLAGS) $(LDLIBS)
166 else
167 O_TO_EXE = $(LD) $(LDFLAGS) $(LDFLAGS_$(@)) $(EXTRA_LDFLAGS) \
168         -Map=$(@).map --cref -o $@ $(OBJS-y) $(LDLIBS)
169 endif
170 O_TO_EXE_STR = $(subst ','\'',$(O_TO_EXE)) #'# fix syntax highlight
171 O_TO_EXE_DISP = $(if $(V),"$(O_TO_EXE_STR)","  LD $(@)")
172 O_TO_EXE_CMD = "cmd_$@ = $(O_TO_EXE_STR)"
173 O_TO_EXE_DO = @set -e; \
174         echo $(O_TO_EXE_DISP); \
175         $(O_TO_EXE) && \
176         echo $(O_TO_EXE_CMD) > $(call exe2cmd,$(@))
177
178 -include .$(APP).cmd
179
180 # path where libraries are retrieved
181 LDLIBS_PATH := $(subst -Wl$(comma)-L,,$(filter -Wl$(comma)-L%,$(LDLIBS)))
182 LDLIBS_PATH += $(subst -L,,$(filter -L%,$(LDLIBS)))
183
184 # list of .a files that are linked to this application
185 LDLIBS_NAMES := $(patsubst -l%,lib%.a,$(filter -l%,$(LDLIBS)))
186 LDLIBS_NAMES += $(patsubst -Wl$(comma)-l%,lib%.a,$(filter -Wl$(comma)-l%,$(LDLIBS)))
187
188 # list of found libraries files (useful for deps). If not found, the
189 # library is silently ignored and dep won't be checked
190 LDLIBS_FILES := $(wildcard $(foreach dir,$(LDLIBS_PATH),\
191         $(addprefix $(dir)/,$(LDLIBS_NAMES))))
192
193 #
194 # Compile executable file if needed
195 #
196 $(APP): $(OBJS-y) $(LDLIBS_FILES) $(DEP_$(APP)) $(LDSCRIPT) FORCE
197         @[ -d $(dir $@) ] || mkdir -p $(dir $@)
198         $(if $(D),\
199                 @echo -n "$< -> $@ " ; \
200                 echo -n "file_missing=$(call boolean,$(file_missing)) " ; \
201                 echo -n "cmdline_changed=$(call boolean,$(call cmdline_changed,$(O_TO_EXE_STR))) " ; \
202                 echo -n "depfile_missing=$(call boolean,$(depfile_missing)) " ; \
203                 echo "depfile_newer=$(call boolean,$(depfile_newer)) ")
204         $(if $(or \
205                 $(file_missing),\
206                 $(call cmdline_changed,$(O_TO_EXE_STR)),\
207                 $(depfile_missing),\
208                 $(depfile_newer)),\
209                 $(O_TO_EXE_DO))
210
211 #
212 # install app in $(RTE_OUTPUT)/app
213 #
214 $(RTE_OUTPUT)/app/$(APP): $(APP)
215         @echo "  INSTALL-APP $(APP)"
216         @[ -d $(RTE_OUTPUT)/app ] || mkdir -p $(RTE_OUTPUT)/app
217         $(Q)cp -f $(APP) $(RTE_OUTPUT)/app
218
219 #
220 # install app map file in $(RTE_OUTPUT)/app
221 #
222 $(RTE_OUTPUT)/app/$(APP).map: $(APP)
223         @echo "  INSTALL-MAP $(APP).map"
224         @[ -d $(RTE_OUTPUT)/app ] || mkdir -p $(RTE_OUTPUT)/app
225         $(Q)cp -f $(APP).map $(RTE_OUTPUT)/app
226
227 #
228 # Clean all generated files
229 #
230 .PHONY: clean
231 clean: _postclean
232         $(Q)rm -f $(_BUILD_TARGETS) $(_INSTALL_TARGETS) $(_CLEAN_TARGETS)
233
234 .PHONY: doclean
235 doclean:
236         $(Q)rm -rf $(APP) $(OBJS-all) $(DEPS-all) $(DEPSTMP-all) \
237           $(CMDS-all) $(INSTALL-FILES-all) .$(APP).cmd
238
239
240 include $(RTE_SDK)/mk/internal/rte.compile-post.mk
241 include $(RTE_SDK)/mk/internal/rte.install-post.mk
242 include $(RTE_SDK)/mk/internal/rte.clean-post.mk
243 include $(RTE_SDK)/mk/internal/rte.build-post.mk
244 include $(RTE_SDK)/mk/internal/rte.depdirs-post.mk
245
246 ifneq ($(wildcard $(RTE_SDK)/mk/target/$(RTE_TARGET)/rte.app.mk),)
247 include $(RTE_SDK)/mk/target/$(RTE_TARGET)/rte.app.mk
248 else
249 include $(RTE_SDK)/mk/target/generic/rte.app.mk
250 endif
251
252 .PHONY: FORCE
253 FORCE: