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
= ulimit
-dS
$(shell ulimit
-dH
>/dev
/null
2>/dev
/null
) >/dev
/null
2>/dev
/null
;
7 @
${_UNLIMIT} ${GMAKE_INV} all
10 @
(echo
; echo
"Build started on $$(LC_ALL=C LANGUAGE=C date)"; \
11 set
-x
; ${_UNLIMIT} ${GMAKE_FMK} VERBOSE
=1 all) 2>&1 | tee
-a make.log
14 @echo
'Common targets:'
15 @echo
' switch TARGET=targetname - Backup current config and copy old saved target config'
16 @echo
' download - fetches all needed distfiles'
17 @echo
'Cleaning targets:'
18 @echo
' clean - Remove bin and build_dir directories'
19 @echo
' cleantarget - Same as "clean", but also remove toolchain for target'
20 @echo
' cleandir - Same as "clean", but also remove all built toolchains'
21 @echo
' cleankernel - Remove kernel dir, useful if you changed any kernel patches'
22 @echo
' distclean - Same as "cleandir", but also remove downloaded'
23 @echo
' distfiles and .config'
25 @echo
'Configuration targets:'
26 @echo
' config - Update current config utilising a line-oriented program'
27 @echo
' menuconfig - Update current config utilising a menu based program'
28 @echo
' (default when .config does not exist)'
29 @echo
' oldconfig - Update current config utilising a provided .configs base'
30 @echo
' allmodconfig - New config selecting all packages as modules when possible'
31 @echo
' allconfig - New config selecting all packages when possible'
32 @echo
' allnoconfig - New config where all options are answered with no'
33 @echo
' kernelconfig - Modify the target kernel configuration'
36 @echo
' help - Print this help text'
37 @echo
' pkg-help - Print help about selectively compiling single packages'
38 @echo
' dev-help - Print help for developers / package maintainers'
40 @echo
'Other generic targets:'
41 @echo
' all - Build everything as specified in .config'
42 @echo
' (default if .config exists)'
43 @echo
' v - Same as "all" but with logging to make.log enabled'
46 @echo
'Package specific targets (use with "package=<pkg-name>" parameter):'
47 @echo
' fetch - Download the necessary distfile'
48 @echo
' extract - Same as "fetch", but also extract the distfile'
49 @echo
' patch - Same as "extract", but also patch the source'
50 @echo
' build - Same as "patch", but also build the binaries'
51 @echo
' fake - Same as "build", but also install the binaries'
52 @echo
' package - Same as "fake", but also create the package'
53 @echo
' clean - Deinstall and remove the build area'
54 @echo
' distclean - Same as "clean", but also remove the distfiles'
56 @echo
'Short package rebuilding guide:'
57 @echo
' run "make package=<pkgname> clean" to remove all generated binaries'
58 @echo
' run "make package=<pkgname> package" to build everything and create the package(s)'
60 @echo
'This does not automatically resolve package dependencies!'
63 @echo
'Regenerate menu information via "make menu"'
64 @echo
'Regenerate dependency information via "make dep"'
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 defconfig
: .prereq_done
126 @
${GMAKE_INV} defconfig
128 allnoconfig
: .prereq_done
129 @
${GMAKE_INV} _config W
=-n
131 allconfig
: .prereq_done
132 @
${GMAKE_INV} _mconfig W
=-y RCONFIG
=Config.in
134 allmodconfig
: .prereq_done
135 @
${GMAKE_INV} _mconfig W
=-o RCONFIG
=Config.in
137 package_index
: .prereq_done
138 @
${GMAKE_INV} package_index
143 bulkall
: .prereq_done
144 @
${GMAKE_INV} bulkall
146 bulkallmod
: .prereq_done
147 @
${GMAKE_INV} bulkallmod
160 @
${GMAKE} .prereq_done
164 @
${GMAKE} .prereq_done NO_ERROR
=1
168 @
-rm -rf .prereq_done
169 @if
! bash
--version
2>&1 | grep
-F
'GNU bash' >/dev
/null
2>&1; then \
170 echo
"GNU bash needs to be installed."; \
173 @if
! mksh
-c
'echo $$KSH_VERSION' 2>&1 | grep
-F
'MIRBSD' >/dev
/null
2>&1; then \
174 echo
"MirBSD ksh (mksh) needs to be installed."; \
177 if
[ $$(mksh
-c
'echo $$KSH_VERSION' |cut
-d
' ' -f
3|sed
"s#R##") -le
34 ]; then \
178 echo
"MirBSD ksh is too old. R35 or higher needed."; \
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
'HOSTCC:=${CC}' >>prereq.mk
207 @echo
'HOSTCFLAGS:=-O2' >>prereq.mk
208 @echo
'LANGUAGE:=C' >>prereq.mk
209 @echo
'LC_ALL:=C' >>prereq.mk
210 @echo
'MAKE:=$${GMAKE}' >>prereq.mk
211 @echo
"OStype:=$$(env uname)" >>prereq.mk
212 @echo
"_PATH:=$$PATH" >>prereq.mk
213 @echo
"PATH:=\$${TOPDIR}/scripts:$$PATH" >>prereq.mk
214 @echo
"SHELL:=$$(which bash)" >>prereq.mk
215 @env NO_ERROR
=${NO_ERROR} BASH
="$$(which bash)" \
216 CC
='${CC}' CPPFLAGS
='${CPPFLAGS}' \
217 bash scripts
/scan-tools.sh
218 @echo
'===> Prerequisites checked successfully.'
221 .PHONY
: prereq prereq-noerror