mk: install binding tool in sbin directory
[dpdk.git] / mk / rte.sdkinstall.mk
1 #   BSD LICENSE
2 #
3 #   Copyright(c) 2010-2014 Intel Corporation. All rights reserved.
4 #   Copyright 2015 6WIND S.A.
5 #   All rights reserved.
6 #
7 #   Redistribution and use in source and binary forms, with or without
8 #   modification, are permitted provided that the following conditions
9 #   are met:
10 #
11 #     * Redistributions of source code must retain the above copyright
12 #       notice, this list of conditions and the following disclaimer.
13 #     * Redistributions in binary form must reproduce the above copyright
14 #       notice, this list of conditions and the following disclaimer in
15 #       the documentation and/or other materials provided with the
16 #       distribution.
17 #     * Neither the name of Intel Corporation nor the names of its
18 #       contributors may be used to endorse or promote products derived
19 #       from this software without specific prior written permission.
20 #
21 #   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22 #   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23 #   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
24 #   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
25 #   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26 #   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
27 #   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28 #   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29 #   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30 #   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31 #   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32
33 # Configuration, compilation and installation can be done at once
34 # with make install T=<config>
35
36 ifdef T # config, build and install combined
37 # The build directory is T and may be prepended with O
38 O ?= .
39 RTE_OUTPUT := $O/$T
40 else # standard install
41 # Build directory is given with O=
42 O ?= build
43 RTE_OUTPUT := $O
44 endif
45
46 ifneq ($(MAKECMDGOALS),pre_install)
47 include $(RTE_SDK)/mk/rte.vars.mk
48 endif
49
50 ifdef T # defaults with T= will install an almost flat staging tree
51 export prefix ?=
52 kerneldir   ?= $(prefix)/kmod
53 else
54 ifeq ($(RTE_EXEC_ENV),linuxapp)
55 kerneldir   ?= /lib/modules/$(shell uname -r)/extra/dpdk
56 else
57 kerneldir   ?= /boot/modules
58 endif
59 prefix      ?=     /usr/local
60 endif
61 exec_prefix ?=      $(prefix)
62 bindir      ?= $(exec_prefix)/bin
63 sbindir     ?= $(exec_prefix)/sbin
64 libdir      ?= $(exec_prefix)/lib
65 includedir  ?=      $(prefix)/include/dpdk
66 datarootdir ?=      $(prefix)/share
67 datadir     ?=       $(datarootdir)/dpdk
68 sdkdir      ?=                $(datadir)
69 targetdir   ?=                $(datadir)/$(RTE_TARGET)
70
71 # The install directories may be staged in DESTDIR
72
73 # Create the directory $1 if not exists
74 rte_mkdir = test -d $1 || mkdir -p $1
75
76 # Create the relative symbolic link $2 -> $1
77 # May be replaced with --relative option of ln from coreutils-8.16
78 rte_symlink = ln -snf $$($(RTE_SDK)/scripts/relpath.sh $1 $(dir $2)) $2
79
80 .PHONY: pre_install
81 pre_install:
82 ifdef T
83         $(Q)if [ ! -f $(RTE_OUTPUT)/.config ]; then \
84                 $(MAKE) config O=$(RTE_OUTPUT); \
85         elif cmp -s $(RTE_OUTPUT)/.config.orig $(RTE_OUTPUT)/.config; then \
86                 $(MAKE) config O=$(RTE_OUTPUT); \
87         else \
88                 if [ -f $(RTE_OUTPUT)/.config.orig ] ; then \
89                         tmp_build=$(RTE_OUTPUT)/.config.tmp; \
90                         $(MAKE) config O=$$tmp_build; \
91                         if ! cmp -s $(RTE_OUTPUT)/.config.orig $$tmp_build/.config ; then \
92                                 echo "Conflict: local config and template config have both changed"; \
93                                 exit 1; \
94                         fi; \
95                 fi; \
96                 echo "Using local configuration"; \
97         fi
98         $(Q)$(MAKE) all O=$(RTE_OUTPUT)
99 endif
100
101 .PHONY: install
102 install:
103 ifeq ($(DESTDIR)$(if $T,,+),)
104         @echo Installation cannot run with T defined and DESTDIR undefined
105 else
106         @echo ================== Installing $(DESTDIR)$(prefix)/
107         $(Q)$(MAKE) O=$(RTE_OUTPUT) T= install-runtime
108         $(Q)$(MAKE) O=$(RTE_OUTPUT) T= install-kmod
109         $(Q)$(MAKE) O=$(RTE_OUTPUT) T= install-sdk
110         @echo Installation in $(DESTDIR)$(prefix)/ complete
111 endif
112
113 install-runtime:
114         $(Q)$(call rte_mkdir, $(DESTDIR)$(libdir))
115         $(Q)cp -a    $O/lib/* $(DESTDIR)$(libdir)
116         $(Q)$(call rte_mkdir, $(DESTDIR)$(bindir))
117         $(Q)tar -cf -      -C $O app  --exclude 'app/*.map' \
118                 --exclude 'app/cmdline*' --exclude app/test \
119                 --exclude app/testacl --exclude app/testpipeline | \
120             tar -xf -      -C $(DESTDIR)$(bindir) --strip-components=1 \
121                 --keep-newer-files --warning=no-ignore-newer
122         $(Q)$(call rte_mkdir,      $(DESTDIR)$(datadir))
123         $(Q)cp -a $(RTE_SDK)/tools $(DESTDIR)$(datadir)
124         $(Q)$(call rte_mkdir,      $(DESTDIR)$(sbindir))
125         $(Q)$(call rte_symlink,    $(DESTDIR)$(datadir)/tools/dpdk_nic_bind.py, \
126                                    $(DESTDIR)$(sbindir)/dpdk_nic_bind)
127
128 install-kmod:
129 ifneq ($(wildcard $O/kmod/*),)
130         $(Q)$(call rte_mkdir, $(DESTDIR)$(kerneldir))
131         $(Q)cp -a   $O/kmod/* $(DESTDIR)$(kerneldir)
132 endif
133
134 install-sdk:
135         $(Q)$(call rte_mkdir, $(DESTDIR)$(includedir))
136         $(Q)tar -chf -     -C $O include | \
137             tar -xf -      -C $(DESTDIR)$(includedir) --strip-components=1 \
138                 --keep-newer-files --warning=no-ignore-newer
139         $(Q)$(call rte_mkdir,                            $(DESTDIR)$(sdkdir))
140         $(Q)cp -a               $(RTE_SDK)/{mk,scripts}  $(DESTDIR)$(sdkdir)
141         $(Q)$(call rte_mkdir,                            $(DESTDIR)$(targetdir))
142         $(Q)cp -a               $O/.config               $(DESTDIR)$(targetdir)
143         $(Q)$(call rte_symlink, $(DESTDIR)$(includedir), $(DESTDIR)$(targetdir)/include)
144         $(Q)$(call rte_symlink, $(DESTDIR)$(libdir),     $(DESTDIR)$(targetdir)/lib)