1 # This file is part of the OpenADK project. OpenADK is copyrighted
2 # material, please see the LICENCE file in the top-level directory.
4 _UNLIMIT
= __limit
=$$(ulimit
-dH
2>/dev
/null
); \
5 test -n
"$$__limit" && ulimit
-dS
$$__limit;
8 @
${_UNLIMIT} ${GMAKE_INV} all
11 @
(echo
; echo
"Build started on $$(LC_ALL=C LANGUAGE=C date)"; \
12 set
-x
; ${_UNLIMIT} ${GMAKE_FMK} VERBOSE
=1 all) 2>&1 | tee
-a make.log
15 @echo
'Configuration targets:'
16 @echo
' config - Update current config utilising a line-oriented program'
17 @echo
' menuconfig - Update current config utilising a menu based program'
18 @echo
' (default when .config does not exist)'
19 @echo
' guiconfig - Update current config utilising a gui based program'
20 @echo
' oldconfig - Update current config utilising a provided .configs base'
21 @echo
' allmodconfig - New config selecting all packages as modules when possible'
22 @echo
' allconfig - New config selecting all packages when possible'
23 @echo
' allnoconfig - New config where all options are answered with no'
26 @echo
' help - Print this help text'
27 @echo
' pkg-help - Print help about selectively compiling single packages'
28 @echo
' dev-help - Print help for developers / package maintainers'
30 @echo
'Common targets:'
31 @echo
' switch ARCH=arch SYSTEM=system - Backup current config and copy old saved target config'
32 @echo
' download - fetches all needed distfiles'
33 @echo
' kernelconfig - Modify the target kernel configuration'
35 @echo
'Cleaning targets:'
36 @echo
' clean - Remove bin and build_dir directories'
37 @echo
' cleantarget - Same as "clean", but also remove toolchain for target'
38 @echo
' cleandir - Same as "clean", but also remove all built toolchains'
39 @echo
' cleankernel - Remove kernel dir, useful if you changed any kernel patches'
40 @echo
' distclean - Same as "cleandir", but also remove downloaded'
41 @echo
' distfiles and .config'
43 @echo
'Other generic targets:'
44 @echo
' all - Build everything as specified in .config'
45 @echo
' (default if .config exists)'
46 @echo
' v - Same as "all" but with logging to make.log enabled'
49 @echo
'Package specific targets (use with "package=<pkg-name>" parameter):'
50 @echo
' fetch - Download the necessary distfile'
51 @echo
' extract - Same as "fetch", but also extract the distfile'
52 @echo
' patch - Same as "extract", but also patch the source'
53 @echo
' build - Same as "patch", but also build the binaries'
54 @echo
' fake - Same as "build", but also install the binaries'
55 @echo
' package - Same as "fake", but also create the package'
56 @echo
' clean - Deinstall and remove the build area'
57 @echo
' distclean - Same as "clean", but also remove the distfiles'
59 @echo
'Short package rebuilding guide:'
60 @echo
' run "make package=<pkgname> clean" to remove all generated binaries'
61 @echo
' run "make package=<pkgname> package" to build everything and create the package(s)'
63 @echo
'This does not automatically resolve package dependencies!'
66 @echo
'Fast way of updating package patches:'
67 @echo
' run "make package=<pkgname> clean" to start with a good base'
68 @echo
' run "make package=<pkgname> patch" to fetch, unpack and patch the source'
69 @echo
' edit the package sources at build_dir/w-<pkgname>-*/<pkgname>-<version>'
70 @echo
' run "make package=<pkgname> update-patches" to regenerate patch files'
72 @echo
'All changed patches will be opened with your $$EDITOR,'
73 @echo
'so you can add a description and verify the modifications.'
75 @echo
'Adding a new package:'
76 @echo
'make PKG=foo VER=1.0 newpackage'
83 @
${GMAKE_INV} _config W
=
85 oldconfig
: .prereq_done
86 @
${GMAKE_INV} _config W
=-o
88 download
: .prereq_done
89 @
${GMAKE_INV} toolchain
/download
90 @
${GMAKE_INV} package
/download
92 cleankernel kernelclean
: .prereq_done
93 -@
${GMAKE_INV} cleankernel
95 cleandir dirclean
: .prereq_done
96 -@
${GMAKE_INV} cleandir
97 @
-rm -f make.log .prereq_done
99 cleantarget targetclean
: .prereq_done
100 -@
${GMAKE_INV} cleantarget
104 -@
${GMAKE_INV} distclean
105 @
-rm -f make.log .prereq_done
113 kernelconfig
: .prereq_done
114 @
${GMAKE_INV} kernelconfig
116 newpackage
: .prereq_done
117 @
${GMAKE_INV} newpackage
119 image_clean imageclean cleanimage
: .prereq_done
120 @
${GMAKE_INV} image_clean
122 menuconfig
: .prereq_done
123 @
${GMAKE_INV} menuconfig
125 guiconfig
: .prereq_done
126 @
${GMAKE_INV} guiconfig
128 defconfig
: .prereq_done
129 @
${GMAKE_INV} defconfig
131 allnoconfig
: .prereq_done
132 @
${GMAKE_INV} _config W
=-n
134 allconfig
: .prereq_done
135 @
${GMAKE_INV} _mconfig W
=-y RCONFIG
=Config.in
137 allmodconfig
: .prereq_done
138 @
${GMAKE_INV} _mconfig W
=-o RCONFIG
=Config.in
140 package_index
: .prereq_done
141 @
${GMAKE_INV} package_index
146 bulktoolchain
: .prereq_done
147 @
${GMAKE_INV} bulktoolchain
149 bulkall
: .prereq_done
150 @
${GMAKE_INV} bulkall
152 bulkallmod
: .prereq_done
153 @
${GMAKE_INV} bulkallmod
169 @
${GMAKE} .prereq_done
173 @
${GMAKE} .prereq_done NO_ERROR
=1
177 @
-rm -rf .prereq_done
178 @if
! bash
--version
2>&1 | grep
-F
'GNU bash' >/dev
/null
2>&1; then \
179 echo
"GNU bash needs to be installed."; \
182 @if
test x
"$$(umask 2>/dev/null | sed 's/00*22/OK/')" != x
"OK"; then \
183 echo
>&2 Error
: you must build with umask
022, sorry.
; \
186 @echo
"TOPDIR:=$$(readlink -nf . 2>/dev/null || pwd -P)" >prereq.mk
187 @echo
"BASH:=$$(which bash)" >>prereq.mk
188 @if
[ -z
"$$(which gmake 2>/dev/null )" ]; then \
189 echo
"GMAKE:=$$(which make)" >>prereq.mk
;\
191 echo
"GMAKE:=$$(which gmake)" >>prereq.mk
;\
193 @echo
"GNU_HOST_NAME:=$$(${CC} -dumpmachine)" >>prereq.mk
194 @echo
"HOST_ARCH:=$$(${CC} -dumpmachine | sed -e s'/-.*//' \
195 -e 's/sparc.*/sparc/' \
197 -e 's/m68k.*/m68k/' \
198 -e 's/ppc/powerpc/g' \
199 -e 's/v850.*/v850/g' \
201 -e 's/mips-.*/mips/' \
202 -e 's/mipsel-.*/mipsel/' \
203 -e 's/cris.*/cris/' \
204 -e 's/i[3-9]86/i386/' \
206 @echo
"HOSTARCH:=$$(${CC} -dumpmachine | sed -e s'/-.*//' \
207 -e 's/sparc.*/sparc/' \
209 -e 's/m68k.*/m68k/' \
210 -e 's/v850.*/v850/g' \
212 -e 's/mips-.*/mips/' \
213 -e 's/mipsel-.*/mipsel/' \
214 -e 's/cris.*/cris/' \
215 -e 's/i[3-9]86/x86/' \
217 @echo
'HOSTCC:=${CC}' >>prereq.mk
218 @echo
'HOSTCFLAGS:=-O2' >>prereq.mk
219 @echo
'HOSTCXX:=${CXX}' >>prereq.mk
220 @echo
'HOSTCXXFLAGS:=-O2' >>prereq.mk
221 @echo
"HOST_LIBIDL_CONFIG:=$$(which libIDL-config-2 2>/dev/null)" >>prereq.mk
222 @echo
"PKG_HOSTLIB_DIR:=$$(pkg-config --variable pc_path pkg-config 2>/dev/null)" >>prereq.mk
223 @echo
'LANGUAGE:=C' >>prereq.mk
224 @echo
'LC_ALL:=C' >>prereq.mk
225 @echo
'MAKE:=$${GMAKE}' >>prereq.mk
226 @echo
"OStype:=$$(env uname)" >>prereq.mk
227 @echo
"ADKtype:=$$(cat /etc/adktarget 2>/dev/null)" >>prereq.mk
228 @echo
"_PATH:=$$PATH" >>prereq.mk
229 @echo
"PATH:=\$${TOPDIR}/scripts:/usr/sbin:$$PATH" >>prereq.mk
230 @echo
"SHELL:=$$(which bash)" >>prereq.mk
231 @env NO_ERROR
=${NO_ERROR} BASH
="$$(which bash)" \
232 CC
='${CC}' CPPFLAGS
='${CPPFLAGS}' \
233 bash scripts
/scan-tools.sh
234 @echo
'===> Prerequisites checked successfully.'
235 @bash scripts
/create-sys
236 @bash scripts
/create-pkg
240 .PHONY
: prereq prereq-noerror