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