dnsmasq: backport fixes
[librecmc/librecmc.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
21 tools-$(BUILD_TOOLCHAIN) += gmp mpfr mpc libelf expat
22 tools-y += m4 libtool autoconf automake flex bison pkg-config mklibs zlib
23 tools-y += sstrip make-ext4fs e2fsprogs mtd-utils mkimage
24 tools-y += firmware-utils patch-image quilt padjffs2
25 tools-y += mm-macros missing-macros cmake bc findutils gengetopt patchelf
26 tools-y += mtools dosfstools libressl
27 tools-$(CONFIG_TARGET_orion_generic) += wrt350nv2-builder upslug2
28 tools-$(CONFIG_TARGET_x86) += qemu
29 tools-$(CONFIG_TARGET_mxs) += elftosb sdimage
30 tools-$(CONFIG_TARGET_ar71xx) += lzma-old
31 tools-$(CONFIG_TARGET_ar71xx)$(CONFIG_TARGET_ath79) += squashfs
32 tools-$(CONFIG_USES_MINOR) += kernel2minor
33 tools-y += lzma squashfskit4 zip
34 tools-$(BUILD_ISL) += isl
35 tools-$(CONFIG_USE_SPARSE) += sparse
36 tools-$(CONFIG_TARGET_apm821xx)$(CONFIG_TARGET_gemini) += genext2fs
37 tools-$(CONFIG_TARGET_tegra) += cbootimage cbootimage-configs
38
39 # builddir dependencies
40 $(curdir)/bison/compile := $(curdir)/flex/compile
41 $(curdir)/flex/compile := $(curdir)/libtool/compile
42 $(curdir)/libtool/compile := $(curdir)/m4/compile $(curdir)/autoconf/compile $(curdir)/automake/compile $(curdir)/missing-macros/compile
43 $(curdir)/squashfs/compile := $(curdir)/lzma-old/compile
44 $(curdir)/squashfskit4/compile := $(curdir)/xz/compile $(curdir)/zlib/compile
45 $(curdir)/quilt/compile := $(curdir)/autoconf/compile $(curdir)/findutils/compile
46 $(curdir)/autoconf/compile := $(curdir)/m4/compile
47 $(curdir)/automake/compile := $(curdir)/m4/compile $(curdir)/autoconf/compile $(curdir)/pkg-config/compile $(curdir)/xz/compile
48 $(curdir)/gmp/compile := $(curdir)/libtool/compile
49 $(curdir)/mpc/compile := $(curdir)/mpfr/compile $(curdir)/gmp/compile
50 $(curdir)/mpfr/compile := $(curdir)/gmp/compile
51 $(curdir)/mtd-utils/compile := $(curdir)/libtool/compile $(curdir)/e2fsprogs/compile $(curdir)/zlib/compile
52 $(curdir)/mklibs/compile := $(curdir)/libtool/compile
53 $(curdir)/qemu/compile := $(curdir)/e2fsprogs/compile $(curdir)/zlib/compile
54 $(curdir)/upslug2/compile := $(curdir)/libtool/compile
55 $(curdir)/mm-macros/compile := $(curdir)/libtool/compile
56 $(curdir)/missing-macros/compile := $(curdir)/autoconf/compile
57 $(curdir)/e2fsprogs/compile := $(curdir)/libtool/compile
58 $(curdir)/libelf/compile := $(curdir)/libtool/compile
59 $(curdir)/sdcc/compile := $(curdir)/bison/compile
60 $(curdir)/padjffs2/compile := $(curdir)/findutils/compile
61 $(curdir)/isl/compile := $(curdir)/gmp/compile
62 $(curdir)/bc/compile := $(curdir)/bison/compile
63 $(curdir)/findutils/compile := $(curdir)/bison/compile
64 $(curdir)/gengetopt/compile := $(curdir)/libtool/compile
65 $(curdir)/patchelf/compile := $(curdir)/libtool/compile
66 $(curdir)/dosfstools/compile := $(curdir)/autoconf/compile $(curdir)/automake/compile
67 $(curdir)/libressl/compile := $(curdir)/pkg-config/compile
68 $(curdir)/mkimage/compile += $(curdir)/libressl/compile
69 $(curdir)/firmware-utils/compile += $(curdir)/libressl/compile $(curdir)/zlib/compile
70 $(curdir)/cmake/compile += $(curdir)/libressl/compile
71 $(curdir)/zlib/compile := $(curdir)/cmake/compile
72 $(curdir)/wrt350nv2-builder/compile := $(curdir)/zlib/compile
73 $(curdir)/lzma-old/compile := $(curdir)/zlib/compile
74 $(curdir)/make-ext4fs/compile := $(curdir)/zlib/compile
75 $(curdir)/cbootimage/compile += $(curdir)/automake/compile
76
77 ifneq ($(HOST_OS),Linux)
78   $(curdir)/squashfskit4/compile += $(curdir)/coreutils/compile
79   tools-y += coreutils
80 endif
81
82 ifneq ($(CONFIG_CCACHE)$(CONFIG_SDK),)
83 $(foreach tool, $(filter-out xz patch,$(tools-y)), $(eval $(curdir)/$(tool)/compile += $(curdir)/ccache/compile))
84 tools-y += ccache
85 endif
86
87 # in case there is no patch tool on the host we need to make patch tool a
88 # dependency for tools which have patches directory
89 $(foreach tool, $(tools-y), $(if $(wildcard $(curdir)/$(tool)/patches),$(eval $(curdir)/$(tool)/compile += $(curdir)/patch/compile)))
90
91 $(foreach tool, $(filter-out xz,$(tools-y)), $(eval $(curdir)/$(tool)/compile += $(curdir)/xz/compile))
92
93 # make any tool depend on tar, xz and patch to ensure that archives can be unpacked and patched properly
94 tools-core := tar xz patch
95
96 $(foreach tool, $(tools-y), $(eval $(curdir)/$(tool)/compile += $(patsubst %,$(curdir)/%/compile,$(tools-core))))
97 tools-y += $(tools-core)
98
99 # make core tools depend on sed and flock
100 $(foreach tool, $(filter-out xz,$(tools-core)), $(eval $(curdir)/$(tool)/compile += $(curdir)/sed/compile))
101 $(curdir)/xz/compile += $(curdir)/flock/compile
102
103 $(curdir)/sed/compile := $(curdir)/flock/compile $(curdir)/xz/compile
104 tools-y += flock sed
105
106 $(curdir)/autoremove := 1
107 $(curdir)/builddirs := $(tools-y) $(tools-dep) $(tools-)
108 $(curdir)/builddirs-default := $(tools-y)
109
110 ifdef CHECK_ALL
111 $(curdir)/builddirs-check:=$($(curdir)/builddirs)
112 $(curdir)/builddirs-download:=$($(curdir)/builddirs)
113 endif
114
115 ifndef DUMP_TARGET_DB
116 define PrepareStaging
117         @for dir in $(1); do ( \
118                 $(if $(QUIET),,set -x;) \
119                 mkdir -p "$$dir"; \
120                 cd "$$dir"; \
121                 mkdir -p bin lib include stamp usr/include usr/lib; \
122         ); done
123 endef
124
125 # preparatory work
126 $(STAGING_DIR)/.prepared: $(TMP_DIR)/.build
127         $(call PrepareStaging,$(STAGING_DIR))
128         mkdir -p $(BUILD_DIR)/stamp
129         touch $@
130
131 $(STAGING_DIR_HOST)/.prepared: $(TMP_DIR)/.build
132         $(call PrepareStaging,$(STAGING_DIR_HOST))
133         mkdir -p $(BUILD_DIR_HOST)/stamp $(STAGING_DIR_HOST)/include/sys
134         $(INSTALL_DATA) $(TOPDIR)/tools/include/*.h $(STAGING_DIR_HOST)/include/
135         $(INSTALL_DATA) $(TOPDIR)/tools/include/sys/*.h $(STAGING_DIR_HOST)/include/sys/
136         ln -sf lib $(STAGING_DIR_HOST)/lib64
137         touch $@
138
139 endif
140
141 $(curdir)//prepare = $(STAGING_DIR)/.prepared $(STAGING_DIR_HOST)/.prepared
142 $(curdir)//compile = $(STAGING_DIR)/.prepared $(STAGING_DIR_HOST)/.prepared
143
144 # prerequisites for the individual targets
145 $(curdir)/ := .config prereq
146
147 $(curdir)/install: $(curdir)/compile
148
149 tools_enabled = $(foreach tool,$(sort $(tools-y) $(tools-)),$(if $(filter $(tool),$(tools-y)),y,n))
150 $(eval $(call stampfile,$(curdir),tools,compile,,_$(subst $(space),,$(tools_enabled))))
151 $(eval $(call stampfile,$(curdir),tools,check,$(TMP_DIR)/.build))
152 $(eval $(call subdir,$(curdir)))