package/bash: add choice for --with-curses option
[openadk.git] / Makefile
blob590c0dac29517d12e8ee8e0db27b4cdf64f10ead
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;
7 all: checkreloc .prereq_done
8 @${_UNLIMIT} ${GMAKE_INV} all
10 v: .prereq_done
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
14 help:
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'
24 @echo ''
25 @echo 'Help targets:'
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'
29 @echo ''
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'
34 @echo ''
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'
42 @echo ''
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'
48 pkg-help:
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'
58 @echo ''
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)'
62 @echo ''
63 @echo 'This does not automatically resolve package dependencies!'
65 dev-help:
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 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
101 @-rm -f make.log
103 distclean cleandist:
104 -@${GMAKE_INV} distclean
105 @-rm -f make.log .prereq_done
107 image: .prereq_done
108 @${GMAKE_INV} image
110 switch: .prereq_done
111 @${GMAKE_INV} switch
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
143 bulk: .prereq_done
144 @${GMAKE_INV} bulk
146 bulktoolchain: .prereq_done
147 @${GMAKE_INV} bulktoolchain
149 bulkall: .prereq_done
150 @${GMAKE_INV} bulkall
152 bulkallmod: .prereq_done
153 @${GMAKE_INV} bulkallmod
155 check: .prereq_done
156 @${GMAKE_INV} check
158 check-gcc: .prereq_done
159 @${GMAKE_INV} check-gcc
161 check-g++: .prereq_done
162 @${GMAKE_INV} check-g++
164 menu: .prereq_done
165 @${GMAKE_INV} menu
167 dep: .prereq_done
168 @${GMAKE_INV} dep
170 world: .prereq_done
171 @${GMAKE_INV} world
173 prereq:
174 @rm -f .prereq_done
175 @${GMAKE} .prereq_done
177 prereq-noerror:
178 @rm -f .prereq_done
179 @${GMAKE} .prereq_done NO_ERROR=1
181 NO_ERROR=0
182 .prereq_done:
183 @-rm -rf .prereq_done
184 @if ! bash --version 2>&1 | grep -F 'GNU bash' >/dev/null 2>&1; then \
185 echo "GNU bash needs to be installed."; \
186 exit 1; \
188 @if test x"$$(umask 2>/dev/null | sed 's/00*22/OK/')" != x"OK"; then \
189 echo >&2 Error: you must build with umask 022, sorry.; \
190 exit 1; \
192 @echo "TOPDIR:=$$(readlink -nf . 2>/dev/null || pwd -P)" >prereq.mk
193 @echo "BASH:=$$(which bash)" >>prereq.mk
194 @if [ -z "$$(which gmake 2>/dev/null )" ]; then \
195 echo "GMAKE:=$$(which make)" >>prereq.mk ;\
196 else \
197 echo "GMAKE:=$$(which gmake)" >>prereq.mk ;\
199 @echo "GNU_HOST_NAME:=$$(${CC} -dumpmachine)" >>prereq.mk
200 @echo "ARCH_FOR_BUILD:=$$(${CC} -dumpmachine | sed -e s'/-.*//' \
201 -e 's/sparc.*/sparc/' \
202 -e 's/armeb.*/armeb/g' \
203 -e 's/arm.*/arm/g' \
204 -e 's/m68k.*/m68k/' \
205 -e 's/v850.*/v850/g' \
206 -e 's/sh[234]/sh/' \
207 -e 's/mips-.*/mips/' \
208 -e 's/mipsel-.*/mipsel/' \
209 -e 's/cris.*/cris/' \
210 -e 's/i[3-9]86/x86/' \
211 )" >>prereq.mk
212 @echo 'CC_FOR_BUILD:=${CC}' >>prereq.mk
213 @echo 'CXX_FOR_BUILD:=${CXX}' >>prereq.mk
214 @echo 'LANGUAGE:=C' >>prereq.mk
215 @echo 'LC_ALL:=C' >>prereq.mk
216 @echo 'MAKE:=$${GMAKE}' >>prereq.mk
217 @echo "OStype:=$$(env uname)" >>prereq.mk
218 @echo "ADKtype:=$$(cat /etc/adktarget 2>/dev/null)" >>prereq.mk
219 @echo "_PATH:=$$PATH" >>prereq.mk
220 @echo "PATH:=\$${TOPDIR}/scripts:/usr/sbin:$$PATH" >>prereq.mk
221 @echo "SHELL:=$$(which bash)" >>prereq.mk
222 @echo "BUILD_LIBIDL_CONFIG:=$$(which libIDL-config-2 2>/dev/null)" >>prereq.mk
223 @PKGCFGDIR=$$(eval pkg-config --variable pc_path pkg-config 2>/dev/null) >/dev/null ; \
224 echo "PKG_HOSTLIB_DIR:=$${PKGCFGDIR:-/usr/lib/pkgconfig}" >>prereq.mk
225 @env NO_ERROR=${NO_ERROR} BASH="$$(which bash)" \
226 CC='${CC}' CPPFLAGS='${CPPFLAGS}' \
227 bash scripts/scan-tools.sh
228 @echo '===> Prerequisites checked successfully.'
229 @bash scripts/create-sys
230 @bash scripts/create-pkg
231 @touch .adkinit
232 @touch $@
234 checkreloc:
235 @bash scripts/reloc.sh
237 .PHONY: prereq prereq-noerror checkreloc