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