]> git.proxmox.com Git - ceph.git/blame - ceph/src/seastar/dpdk/mk/internal/rte.build-post.mk
import 15.2.0 Octopus source
[ceph.git] / ceph / src / seastar / dpdk / mk / internal / rte.build-post.mk
CommitLineData
9f95a23c
TL
1# SPDX-License-Identifier: BSD-3-Clause
2# Copyright(c) 2010-2014 Intel Corporation
7c673cae
FG
3
4# build helper .mk
5
6# fast way, no need to do prebuild and postbuild
7ifeq ($(PREBUILD)$(POSTBUILD),)
8
9_postbuild: $(_BUILD)
10 @touch _postbuild
11
12else # slower way
13
14_prebuild: $(PREBUILD)
15 @touch _prebuild
16
17ifneq ($(_BUILD),)
18$(_BUILD): _prebuild
19else
20_BUILD = _prebuild
21endif
22
23_build: $(_BUILD)
24 @touch _build
25
26ifneq ($(POSTBUILD),)
27$(POSTBUILD): _build
28else
29POSTBUILD = _build
30endif
31
32_postbuild: $(POSTBUILD)
33 @touch _postbuild
34endif