mk: split install rule
[dpdk.git] / mk / rte.sdkroot.mk
1 #   BSD LICENSE
2 #
3 #   Copyright(c) 2010-2014 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 MAKEFLAGS += --no-print-directory
33
34 # define Q to '@' or not. $(Q) is used to prefix all shell commands to
35 # be executed silently.
36 Q=@
37 ifdef V
38 ifeq ("$(origin V)", "command line")
39 Q=
40 endif
41 endif
42 export Q
43
44 ifeq ($(RTE_SDK),)
45 $(error RTE_SDK is not defined)
46 endif
47
48 RTE_SRCDIR = $(CURDIR)
49 export RTE_SRCDIR
50
51 BUILDING_RTE_SDK := 1
52 export BUILDING_RTE_SDK
53
54 #
55 # We can specify the configuration template when doing the "make
56 # config". For instance: make config T=x86_64-native-linuxapp-gcc
57 #
58 RTE_CONFIG_TEMPLATE :=
59 ifdef T
60 ifeq ("$(origin T)", "command line")
61 RTE_CONFIG_TEMPLATE := $(RTE_SRCDIR)/config/defconfig_$(T)
62 endif
63 endif
64 export RTE_CONFIG_TEMPLATE
65
66 #
67 # Default output is $(RTE_SRCDIR)/build
68 # output files wil go in a separate directory
69 #
70 ifdef O
71 ifeq ("$(origin O)", "command line")
72 RTE_OUTPUT := $(abspath $(O))
73 endif
74 endif
75 RTE_OUTPUT ?= $(RTE_SRCDIR)/build
76 export RTE_OUTPUT
77
78 # the directory where intermediate build files are stored, like *.o,
79 # *.d, *.cmd, ...
80 BUILDDIR = $(RTE_OUTPUT)/build
81 export BUILDDIR
82
83 export ROOTDIRS-y ROOTDIRS- ROOTDIRS-n
84
85 .PHONY: default
86 default: all
87
88 .PHONY: config showconfigs showversion
89 config showconfigs showversion:
90         $(Q)$(MAKE) -f $(RTE_SDK)/mk/rte.sdkconfig.mk $@
91
92 .PHONY: test fast_test ring_test mempool_test perf_test coverage
93 test fast_test ring_test mempool_test perf_test coverage:
94         $(Q)$(MAKE) -f $(RTE_SDK)/mk/rte.sdktest.mk $@
95
96 .PHONY: install
97 install:
98         $(Q)$(MAKE) -f $(RTE_SDK)/mk/rte.sdkinstall.mk pre_install
99         $(Q)$(MAKE) -f $(RTE_SDK)/mk/rte.sdkinstall.mk $@
100 install-%:
101         $(Q)$(MAKE) -f $(RTE_SDK)/mk/rte.sdkinstall.mk $@
102
103 .PHONY: doc help
104 doc: doc-all
105 help: doc-help
106 doc-%:
107         $(Q)$(MAKE) -f $(RTE_SDK)/mk/rte.sdkdoc.mk $*
108
109 .PHONY: depdirs depgraph
110 depdirs depgraph:
111         $(Q)$(MAKE) -f $(RTE_SDK)/mk/rte.sdkdepdirs.mk $@
112
113 .PHONY: gcov gcovclean
114 gcov gcovclean:
115         $(Q)$(MAKE) -f $(RTE_SDK)/mk/rte.sdkgcov.mk $@
116
117 .PHONY: examples examples_clean
118 examples examples_clean:
119         $(Q)$(MAKE) -f $(RTE_SDK)/mk/rte.sdkexamples.mk $@
120
121 # all other build targets
122 %:
123         $(Q)$(MAKE) -f $(RTE_SDK)/mk/rte.sdkconfig.mk checkconfig
124         $(Q)$(MAKE) -f $(RTE_SDK)/mk/rte.sdkbuild.mk $@