added new target for ALix2D13
[openadk.git] / Makefile
blob3b6d13687bed14ae47457f231098ff4562aa8564
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;
6 all: .prereq_done
7 @${_UNLIMIT} ${GMAKE_INV} all
9 v: .prereq_done
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
13 help:
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'
24 @echo ''
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 ' wconfig - Same as "oldconfig", but also writes out hidden symbols'
31 @echo ' allmodconfig - New config selecting all packages as modules when possible'
32 @echo ' allconfig - New config selecting all packages when possible'
33 @echo ' allnoconfig - New config where all options are answered with no'
34 @echo ' kernelconfig - Modify the target kernel configuration'
35 @echo ''
36 @echo 'Help targets:'
37 @echo ' help - Print this help text'
38 @echo ' pkg-help - Print help about selectively compiling single packages'
39 @echo ' dev-help - Print help for developers / package maintainers'
40 @echo ''
41 @echo 'Other generic targets:'
42 @echo ' all - Build everything as specified in .config'
43 @echo ' (default if .config exists)'
44 @echo ' v - Same as "all" but with logging to make.log enabled'
46 pkg-help:
47 @echo 'Package specific targets (use with "package=<pkg-name>" parameter):'
48 @echo ' fetch - Download the necessary distfile'
49 @echo ' extract - Same as "fetch", but also extract the distfile'
50 @echo ' patch - Same as "extract", but also patch the source'
51 @echo ' build - Same as "patch", but also build the binaries'
52 @echo ' fake - Same as "build", but also install the binaries'
53 @echo ' package - Same as "fake", but also create the package'
54 @echo ' clean - Deinstall and remove the build area'
55 @echo ' distclean - Same as "clean", but also remove the distfiles'
56 @echo ''
57 @echo 'Short package rebuilding guide:'
58 @echo ' run "make package=<pkgname> clean" to remove all generated binaries'
59 @echo ' run "make package=<pkgname> package" to build everything and create the package(s)'
60 @echo ''
61 @echo 'This does not automatically resolve package dependencies!'
63 dev-help:
64 @echo 'Regenerate menu information via "make menu"'
65 @echo
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'
71 @echo ''
72 @echo 'All changed patches will be opened with your $$EDITOR,'
73 @echo 'so you can add a description and verify the modifications.'
74 @echo ''
75 @echo 'Adding a new package:'
76 @echo 'make PKG=foo VER=1.0 newpackage'
78 clean: .prereq_done
79 -@rm -f nohup.out
80 @${GMAKE_INV} clean
82 config: .prereq_done
83 @${GMAKE_INV} _config W=
85 oldconfig: .prereq_done
86 @${GMAKE_INV} _config W=-o
88 wconfig: .prereq_done
89 @${GMAKE_INV} _config W=-A
91 download: .prereq_done
92 @${GMAKE_INV} toolchain/download
93 @${GMAKE_INV} package/download
95 cleankernel kernelclean: .prereq_done
96 -@${GMAKE_INV} cleankernel
98 cleandir dirclean: .prereq_done
99 -@${GMAKE_INV} cleandir
100 @-rm -f make.log .prereq_done
102 cleantarget targetclean: .prereq_done
103 -@${GMAKE_INV} cleantarget
104 @-rm -f make.log
106 distclean cleandist:
107 -@${GMAKE_INV} distclean
108 @-rm -f make.log .prereq_done
110 image: .prereq_done
111 @${GMAKE_INV} image
113 switch: .prereq_done
114 @${GMAKE_INV} switch
116 kernelconfig: .prereq_done
117 @${GMAKE_INV} kernelconfig
119 newpackage: .prereq_done
120 @${GMAKE_INV} newpackage
122 image_clean imageclean cleanimage: .prereq_done
123 @${GMAKE_INV} image_clean
125 menuconfig: .prereq_done
126 @${GMAKE_INV} menuconfig
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
143 bulk: .prereq_done
144 @${GMAKE_INV} bulk
146 menu: .prereq_done
147 @${GMAKE_INV} menu
149 world: .prereq_done
150 @${GMAKE_INV} world
152 prereq:
153 @rm -f .prereq_done
154 @${GMAKE} .prereq_done
156 prereq-noerror:
157 @rm -f .prereq_done
158 @${GMAKE} .prereq_done NO_ERROR=1
160 NO_ERROR=0
161 .prereq_done:
162 @-rm -rf .prereq_done
163 @if ! bash --version 2>&1 | fgrep 'GNU bash' >/dev/null 2>&1; then \
164 echo "GNU bash needs to be installed."; \
165 exit 1; \
167 @if ! mksh -c 'echo $$KSH_VERSION' 2>&1 | fgrep 'MIRBSD' >/dev/null 2>&1; then \
168 echo "MirBSD ksh (mksh) needs to be installed."; \
169 exit 1; \
170 else \
171 if [ $$(mksh -c 'echo $$KSH_VERSION' |cut -d ' ' -f 3|sed "s#R##") -le 34 ]; then \
172 echo "MirBSD ksh is too old. R35 or higher needed."; \
173 exit 1; \
174 fi \
176 @if test x"$$(umask 2>/dev/null | sed 's/00*22/OK/')" != x"OK"; then \
177 echo >&2 Error: you must build with umask 022, sorry.; \
178 exit 1; \
180 @echo "TOPDIR:=$$(readlink -nf . 2>/dev/null || pwd -P)" >prereq.mk
181 @echo "BASH:=$$(which bash)" >>prereq.mk
182 @if [ -z "$$(which gmake 2>/dev/null )" ]; then \
183 echo "GMAKE:=$$(which make)" >>prereq.mk ;\
184 else \
185 echo "GMAKE:=$$(which gmake)" >>prereq.mk ;\
187 @echo "GNU_HOST_NAME:=$$(${CC} -dumpmachine)" >>prereq.mk
188 @echo "HOST_ARCH:=$$(${CC} -dumpmachine | sed -e s'/-.*//' \
189 -e 's/sparc.*/sparc/' \
190 -e 's/arm.*/arm/g' \
191 -e 's/m68k.*/m68k/' \
192 -e 's/ppc/powerpc/g' \
193 -e 's/v850.*/v850/g' \
194 -e 's/sh[234]/sh/' \
195 -e 's/mips-.*/mips/' \
196 -e 's/mipsel-.*/mipsel/' \
197 -e 's/cris.*/cris/' \
198 -e 's/i[3-9]86/i386/' \
199 )" >>prereq.mk
200 @echo 'HOSTCC:=${CC}' >>prereq.mk
201 @echo 'HOSTCFLAGS:=-O2' >>prereq.mk
202 @echo 'LANGUAGE:=C' >>prereq.mk
203 @echo 'LC_ALL:=C' >>prereq.mk
204 @echo 'MAKE:=$${GMAKE}' >>prereq.mk
205 @echo "OStype:=$$(env uname)" >>prereq.mk
206 @echo "_PATH:=$$PATH" >>prereq.mk
207 @echo "PATH:=\$${TOPDIR}/scripts:$$PATH" >>prereq.mk
208 @echo "SHELL:=$$(which bash)" >>prereq.mk
209 @env NO_ERROR=${NO_ERROR} BASH="$$(which bash)" \
210 CC='${CC}' CPPFLAGS='${CPPFLAGS}' \
211 bash scripts/scan-tools.sh
212 @echo '===> Prerequisites checked successfully.'
213 @touch $@
215 .PHONY: prereq prereq-noerror