1*af75078fSIntel#   BSD LICENSE
2*af75078fSIntel#
3*af75078fSIntel#   Copyright(c) 2010-2012 Intel Corporation. All rights reserved.
4*af75078fSIntel#   All rights reserved.
5*af75078fSIntel#
6*af75078fSIntel#   Redistribution and use in source and binary forms, with or without
7*af75078fSIntel#   modification, are permitted provided that the following conditions
8*af75078fSIntel#   are met:
9*af75078fSIntel#
10*af75078fSIntel#     * Redistributions of source code must retain the above copyright
11*af75078fSIntel#       notice, this list of conditions and the following disclaimer.
12*af75078fSIntel#     * Redistributions in binary form must reproduce the above copyright
13*af75078fSIntel#       notice, this list of conditions and the following disclaimer in
14*af75078fSIntel#       the documentation and/or other materials provided with the
15*af75078fSIntel#       distribution.
16*af75078fSIntel#     * Neither the name of Intel Corporation nor the names of its
17*af75078fSIntel#       contributors may be used to endorse or promote products derived
18*af75078fSIntel#       from this software without specific prior written permission.
19*af75078fSIntel#
20*af75078fSIntel#   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21*af75078fSIntel#   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22*af75078fSIntel#   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23*af75078fSIntel#   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
24*af75078fSIntel#   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25*af75078fSIntel#   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
26*af75078fSIntel#   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27*af75078fSIntel#   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28*af75078fSIntel#   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29*af75078fSIntel#   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30*af75078fSIntel#   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31*af75078fSIntel#
32*af75078fSIntel#  version: DPDK.L.1.2.3-3
33*af75078fSIntel
34*af75078fSIntelifeq ($(RTE_SDK),)
35*af75078fSIntel$(error "Please define RTE_SDK environment variable")
36*af75078fSIntelendif
37*af75078fSIntel
38*af75078fSIntelinclude $(RTE_SDK)/mk/rte.vars.mk
39*af75078fSIntelunexport RTE_SRCDIR RTE_OUTPUT RTE_EXTMK
40*af75078fSIntel
41*af75078fSIntelDIRS-$(CONFIG_RTE_EXEC_ENV_LINUXAPP) += $(wildcard mp_*)
42*af75078fSIntel
43*af75078fSIntel.PHONY: all clean $(DIRS-y)
44*af75078fSIntel
45*af75078fSIntelall: $(DIRS-y)
46*af75078fSIntelclean: $(DIRS-y)
47*af75078fSIntel
48*af75078fSIntel$(DIRS-y):
49*af75078fSIntel	$(MAKE) -C $@ $(MAKECMDGOALS)
50