]> git.proxmox.com Git - ceph.git/blame - ceph/src/seastar/dpdk/mk/rte.extapp.mk
import 15.2.0 Octopus source
[ceph.git] / ceph / src / seastar / dpdk / mk / rte.extapp.mk
CommitLineData
9f95a23c
TL
1# SPDX-License-Identifier: BSD-3-Clause
2# Copyright(c) 2010-2014 Intel Corporation
7c673cae
FG
3
4MAKEFLAGS += --no-print-directory
5
6# we must create the output dir first and recall the same Makefile
7# from this directory
8ifeq ($(NOT_FIRST_CALL),)
9
10NOT_FIRST_CALL = 1
11export NOT_FIRST_CALL
12
13all:
14 $(Q)mkdir -p $(RTE_OUTPUT)
15 $(Q)$(MAKE) -C $(RTE_OUTPUT) -f $(RTE_EXTMK) \
16 S=$(RTE_SRCDIR) O=$(RTE_OUTPUT) SRCDIR=$(RTE_SRCDIR)
17
18%::
19 $(Q)mkdir -p $(RTE_OUTPUT)
20 $(Q)$(MAKE) -C $(RTE_OUTPUT) -f $(RTE_EXTMK) $@ \
21 S=$(RTE_SRCDIR) O=$(RTE_OUTPUT) SRCDIR=$(RTE_SRCDIR)
22else
23include $(RTE_SDK)/mk/rte.app.mk
24endif