blob: e56daf457c85df2cfc7c493c86e9cf90de966433 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# SPDX-License-Identifier: BSD-3-Clause
# Copyright(c) 2010-2014 Intel Corporation
# install-only makefile (no build target)
include $(RTE_SDK)/mk/internal/rte.install-pre.mk
include $(RTE_SDK)/mk/internal/rte.clean-pre.mk
# VPATH contains at least SRCDIR
VPATH += $(SRCDIR)
_INSTALL = $(INSTALL-FILES-y) $(SYMLINK-FILES-y)
_CLEAN = doclean
.PHONY: all
all: _postinstall
@true
.PHONY: clean
clean: _postclean
.PHONY: doclean
doclean:
@rm -rf $(INSTALL-FILES-all)
@rm -f $(_INSTALL_TARGETS) $(_CLEAN_TARGETS)
include $(RTE_SDK)/mk/internal/rte.install-post.mk
include $(RTE_SDK)/mk/internal/rte.clean-post.mk
|