doc: whitespace changes in licenses
[dpdk.git] / mk / rte.sdkroot.mk
1 #   BSD LICENSE
2
3 #   Copyright(c) 2010-2013 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=i686-default-baremetal-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
89 config:
90         $(Q)$(MAKE) -f $(RTE_SDK)/mk/rte.sdkconfig.mk config
91
92 .PHONY: test
93 test:
94         $(Q)$(MAKE) -f $(RTE_SDK)/mk/rte.sdktest.mk test
95
96 .PHONY: fast_test ring_test mempool_test perf_test coverage
97 fast_test ring_test mempool_test perf_test coverage:
98         $(Q)$(MAKE) -f $(RTE_SDK)/mk/rte.sdktest.mk $@
99
100 .PHONY: testall
101 testall:
102         $(Q)$(MAKE) -f $(RTE_SDK)/mk/rte.sdktestall.mk testall
103
104 .PHONY: install
105 install:
106         $(Q)$(MAKE) -f $(RTE_SDK)/mk/rte.sdkinstall.mk install
107
108 .PHONY: uninstall
109 uninstall:
110         $(Q)$(MAKE) -f $(RTE_SDK)/mk/rte.sdkinstall.mk uninstall
111
112 .PHONY: doc
113 doc:
114         $(Q)$(MAKE) -f $(RTE_SDK)/mk/rte.sdkdoc.mk doc
115
116 .PHONY: pdfdoc
117 pdfdoc:
118         $(Q)$(MAKE) -f $(RTE_SDK)/mk/rte.sdkdoc.mk pdfdoc
119
120 .PHONY: doxydoc
121 doxydoc:
122         $(Q)$(MAKE) -f $(RTE_SDK)/mk/rte.sdkdoc.mk doxydoc
123
124 .PHONY: docclean
125 docclean:
126         $(Q)$(MAKE) -f $(RTE_SDK)/mk/rte.sdkdoc.mk docclean
127
128 .PHONY: depdirs
129 depdirs:
130         $(Q)$(MAKE) -f $(RTE_SDK)/mk/rte.sdkdepdirs.mk depdirs
131
132 .PHONY: depgraph
133 depgraph:
134         $(Q)$(MAKE) -f $(RTE_SDK)/mk/rte.sdkdepdirs.mk depgraph
135
136 .PHONY: gcovclean
137 gcovclean:
138         $(Q)$(MAKE) -f $(RTE_SDK)/mk/rte.sdkgcov.mk gcovclean
139
140 .PHONY: gcov
141 gcov:
142         $(Q)$(MAKE) -f $(RTE_SDK)/mk/rte.sdkgcov.mk gcov
143
144 # all other build targets
145 %:
146         $(Q)$(MAKE) -f $(RTE_SDK)/mk/rte.sdkconfig.mk checkconfig
147         $(Q)$(MAKE) -f $(RTE_SDK)/mk/rte.sdkbuild.mk $@