tools/zstd: update to 1.5.2
[openwrt/openwrt.git] / tools / Makefile
1 #
2 # Copyright (C) 2006-2011 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7 # Main makefile for the host tools
8 #
9 curdir:=tools
10
11 # subdirectories to descend into
12 tools-y :=
13
14 ifeq ($(CONFIG_EXTERNAL_TOOLCHAIN),)
15 BUILD_TOOLCHAIN := y
16 ifdef CONFIG_GCC_USE_GRAPHITE
17 BUILD_ISL = y
18 endif
19 endif
20 ifneq ($(CONFIG_SDK)$(CONFIG_PACKAGE_kmod-b43)$(CONFIG_PACKAGE_b43legacy-firmware)$(CONFIG_BRCMSMAC_USE_FW_FROM_WL),)
21 BUILD_B43_TOOLS = y
22 endif
23
24 tools-y += autoconf autoconf-archive automake bc bison cmake cpio dosfstools
25 tools-y += e2fsprogs fakeroot findutils firmware-utils flex gengetopt
26 tools-y += libressl libtool lzma m4 make-ext4fs meson missing-macros mkimage
27 tools-y += mklibs mtd-utils mtools ninja padjffs2 patch-image
28 tools-y += patchelf pkgconf quilt squashfskit4 sstrip xxd zip zlib zstd
29 tools-$(BUILD_B43_TOOLS) += b43-tools
30 tools-$(BUILD_ISL) += isl
31 tools-$(BUILD_TOOLCHAIN) += expat gmp mpc mpfr
32 tools-$(CONFIG_TARGET_apm821xx)$(CONFIG_TARGET_gemini) += genext2fs
33 tools-$(CONFIG_TARGET_ath79) += lzma-old squashfs
34 tools-$(CONFIG_TARGET_mxs) += elftosb sdimage
35 tools-$(CONFIG_TARGET_tegra) += cbootimage cbootimage-configs
36 tools-$(CONFIG_USES_MINOR) += kernel2minor
37 tools-$(CONFIG_USE_SPARSE) += sparse
38 tools-$(CONFIG_USE_LLVM_BUILD) += llvm-bpf
39
40 # builddir dependencies
41 $(curdir)/autoconf/compile := $(curdir)/m4/compile
42 $(curdir)/automake/compile := $(curdir)/m4/compile $(curdir)/autoconf/compile $(curdir)/pkgconf/compile $(curdir)/xz/compile
43 $(curdir)/b43-tools/compile := $(curdir)/bison/compile
44 $(curdir)/bc/compile := $(curdir)/bison/compile $(curdir)/libtool/compile
45 $(curdir)/bison/compile := $(curdir)/flex/compile
46 $(curdir)/cbootimage/compile += $(curdir)/automake/compile
47 $(curdir)/cmake/compile += $(curdir)/libressl/compile $(curdir)/ninja/compile
48 $(curdir)/dosfstools/compile := $(curdir)/autoconf/compile $(curdir)/automake/compile
49 $(curdir)/e2fsprogs/compile := $(curdir)/libtool/compile
50 $(curdir)/fakeroot/compile := $(curdir)/libtool/compile
51 $(curdir)/findutils/compile := $(curdir)/bison/compile
52 $(curdir)/firmware-utils/compile += $(curdir)/libressl/compile $(curdir)/zlib/compile
53 $(curdir)/flex/compile := $(curdir)/libtool/compile
54 $(curdir)/gengetopt/compile := $(curdir)/libtool/compile
55 $(curdir)/gmp/compile := $(curdir)/libtool/compile
56 $(curdir)/isl/compile := $(curdir)/gmp/compile
57 $(curdir)/libressl/compile := $(curdir)/pkgconf/compile
58 $(curdir)/libtool/compile := $(curdir)/m4/compile $(curdir)/autoconf/compile $(curdir)/automake/compile $(curdir)/missing-macros/compile
59 $(curdir)/lzma-old/compile := $(curdir)/zlib/compile
60 $(curdir)/llvm-bpf/compile := $(curdir)/cmake/compile
61 $(curdir)/make-ext4fs/compile := $(curdir)/zlib/compile
62 $(curdir)/meson/compile := $(curdir)/ninja/compile
63 $(curdir)/missing-macros/compile := $(curdir)/autoconf/compile
64 $(curdir)/mkimage/compile += $(curdir)/libressl/compile
65 $(curdir)/mklibs/compile := $(curdir)/libtool/compile
66 $(curdir)/mpc/compile := $(curdir)/mpfr/compile $(curdir)/gmp/compile
67 $(curdir)/mpfr/compile := $(curdir)/gmp/compile
68 $(curdir)/mtd-utils/compile := $(curdir)/libtool/compile $(curdir)/e2fsprogs/compile $(curdir)/zlib/compile
69 $(curdir)/padjffs2/compile := $(curdir)/findutils/compile
70 $(curdir)/patchelf/compile := $(curdir)/libtool/compile
71 $(curdir)/pkgconf/compile := $(curdir)/meson/compile
72 $(curdir)/quilt/compile := $(curdir)/autoconf/compile $(curdir)/findutils/compile
73 $(curdir)/sdcc/compile := $(curdir)/bison/compile
74 $(curdir)/squashfs/compile := $(curdir)/lzma-old/compile
75 $(curdir)/squashfskit4/compile := $(curdir)/xz/compile $(curdir)/zlib/compile
76 $(curdir)/zlib/compile := $(curdir)/cmake/compile
77 $(curdir)/zstd/compile := $(curdir)/meson/compile
78
79 ifneq ($(HOST_OS),Linux)
80 $(curdir)/squashfskit4/compile += $(curdir)/coreutils/compile
81 tools-y += coreutils
82 endif
83 ifeq ($(HOST_OS),Darwin)
84 tools-y += bash
85 endif
86
87 ifneq ($(CONFIG_CCACHE)$(CONFIG_SDK),)
88 $(foreach tool, $(filter-out xz zstd pkgconf patch ninja meson libressl cmake,$(tools-y)), $(eval $(curdir)/$(tool)/compile += $(curdir)/ccache/compile))
89 tools-y += ccache
90 $(curdir)/ccache/compile := $(curdir)/zstd/compile
91 endif
92
93 # in case there is no patch tool on the host we need to make patch tool a
94 # dependency for tools which have patches directory
95 $(foreach tool, $(tools-y), $(if $(wildcard $(curdir)/$(tool)/patches),$(eval $(curdir)/$(tool)/compile += $(curdir)/patch/compile)))
96
97 $(foreach tool, $(filter-out xz,$(tools-y)), $(eval $(curdir)/$(tool)/compile += $(curdir)/xz/compile))
98
99 # make any tool depend on tar, xz and patch to ensure that archives can be unpacked and patched properly
100 tools-core := tar xz patch
101
102 $(foreach tool, $(tools-y), $(eval $(curdir)/$(tool)/compile += $(patsubst %,$(curdir)/%/compile,$(tools-core))))
103 tools-y += $(tools-core)
104
105 # make core tools depend on sed and flock
106 $(foreach tool, $(filter-out xz,$(tools-core)), $(eval $(curdir)/$(tool)/compile += $(curdir)/sed/compile))
107 $(curdir)/xz/compile += $(curdir)/flock/compile
108
109 $(curdir)/sed/compile := $(curdir)/flock/compile $(curdir)/xz/compile
110 tools-y += flock sed
111
112 $(curdir)/autoremove := 1
113 $(curdir)/builddirs := $(tools-y) $(tools-dep) $(tools-)
114 $(curdir)/builddirs-default := $(tools-y)
115
116 ifdef CHECK_ALL
117 $(curdir)/builddirs-check:=$($(curdir)/builddirs)
118 $(curdir)/builddirs-download:=$($(curdir)/builddirs)
119 endif
120
121 ifndef DUMP_TARGET_DB
122 define PrepareStaging
123 @for dir in $(1); do ( \
124 $(if $(QUIET),,set -x;) \
125 mkdir -p "$$dir"; \
126 cd "$$dir"; \
127 mkdir -p bin lib stamp usr/include usr/lib; \
128 ); done
129 endef
130
131 $(BIN_DIR):
132 mkdir -p $@
133
134 # preparatory work
135 $(STAGING_DIR)/.prepared: $(TMP_DIR)/.build
136 $(call PrepareStaging,$(STAGING_DIR))
137 mkdir -p $(BUILD_DIR)/stamp
138 touch $@
139
140 $(STAGING_DIR_HOST)/.prepared: $(TMP_DIR)/.build
141 $(call PrepareStaging,$(STAGING_DIR_HOST))
142 mkdir -p $(BUILD_DIR_HOST)/stamp $(STAGING_DIR_HOST)/include/sys
143 $(INSTALL_DATA) $(TOPDIR)/tools/include/*.h $(STAGING_DIR_HOST)/include/
144 $(INSTALL_DATA) $(TOPDIR)/tools/include/sys/*.h $(STAGING_DIR_HOST)/include/sys/
145 ifneq ($(HOST_OS),Linux)
146 mkdir -p $(STAGING_DIR_HOST)/include/asm
147 $(INSTALL_DATA) $(TOPDIR)/tools/include/asm/*.h $(STAGING_DIR_HOST)/include/asm/
148 endif
149 ln -snf lib $(STAGING_DIR_HOST)/lib64
150 touch $@
151
152 endif
153
154 $(curdir)//prepare = $(STAGING_DIR)/.prepared $(STAGING_DIR_HOST)/.prepared $(BIN_DIR)
155 $(curdir)//compile = $(STAGING_DIR)/.prepared $(STAGING_DIR_HOST)/.prepared $(BIN_DIR)
156
157 # prerequisites for the individual targets
158 $(curdir)/ := .config prereq
159
160 $(curdir)/install: $(curdir)/compile
161
162 tools_enabled = $(foreach tool,$(sort $(tools-y) $(tools-)),$(if $(filter $(tool),$(tools-y)),y,n))
163 $(eval $(call stampfile,$(curdir),tools,compile,,_$(subst $(space),,$(tools_enabled)),$(STAGING_DIR_HOST)))
164 $(eval $(call stampfile,$(curdir),tools,check,$(TMP_DIR)/.build,,$(STAGING_DIR_HOST)))
165 $(eval $(call subdir,$(curdir)))