libXaw: fix wildcard ('?' must be non-empty)
[openadk.git] / Makefile
blobe8acb18f79bddef787190cfa9cb06f8cd347c43e
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 ' 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'
34 @echo ''
35 @echo 'Help targets:'
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'
39 @echo ''
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'
45 pkg-help:
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'
55 @echo ''
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)'
59 @echo ''
60 @echo 'This does not automatically resolve package dependencies!'
62 dev-help:
63 @echo 'Regenerate menu information via "make menu"'
64 @echo 'Regenerate dependency information via "make dep"'
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 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 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
140 bulk: .prereq_done
141 @${GMAKE_INV} bulk
143 bulktoolchain: .prereq_done
144 @${GMAKE_INV} bulktoolchain
146 bulkall: .prereq_done
147 @${GMAKE_INV} bulkall
149 bulkallmod: .prereq_done
150 @${GMAKE_INV} bulkallmod
152 menu: .prereq_done
153 @${GMAKE_INV} menu
155 dep: .prereq_done
156 @${GMAKE_INV} dep
158 world: .prereq_done
159 @${GMAKE_INV} world
161 prereq:
162 @rm -f .prereq_done
163 @${GMAKE} .prereq_done
165 prereq-noerror:
166 @rm -f .prereq_done
167 @${GMAKE} .prereq_done NO_ERROR=1
169 NO_ERROR=0
170 .prereq_done:
171 @-rm -rf .prereq_done
172 @if ! bash --version 2>&1 | grep -F 'GNU bash' >/dev/null 2>&1; then \
173 echo "GNU bash needs to be installed."; \
174 exit 1; \
176 @if ! mksh -c 'echo $$KSH_VERSION' 2>&1 | grep -F 'MIRBSD' >/dev/null 2>&1; then \
177 echo "MirBSD ksh (mksh) needs to be installed."; \
178 exit 1; \
179 else \
180 if [ $$(mksh -c 'echo $$KSH_VERSION' |cut -d ' ' -f 3|sed "s#R##") -le 34 ]; then \
181 echo "MirBSD ksh is too old. R35 or higher needed."; \
182 exit 1; \
183 fi \
185 @if test x"$$(umask 2>/dev/null | sed 's/00*22/OK/')" != x"OK"; then \
186 echo >&2 Error: you must build with umask 022, sorry.; \
187 exit 1; \
189 @echo "TOPDIR:=$$(readlink -nf . 2>/dev/null || pwd -P)" >prereq.mk
190 @echo "BASH:=$$(which bash)" >>prereq.mk
191 @if [ -z "$$(which gmake 2>/dev/null )" ]; then \
192 echo "GMAKE:=$$(which make)" >>prereq.mk ;\
193 else \
194 echo "GMAKE:=$$(which gmake)" >>prereq.mk ;\
196 @echo "GNU_HOST_NAME:=$$(${CC} -dumpmachine)" >>prereq.mk
197 @echo "HOST_ARCH:=$$(${CC} -dumpmachine | sed -e s'/-.*//' \
198 -e 's/sparc.*/sparc/' \
199 -e 's/arm.*/arm/g' \
200 -e 's/m68k.*/m68k/' \
201 -e 's/ppc/powerpc/g' \
202 -e 's/v850.*/v850/g' \
203 -e 's/sh[234]/sh/' \
204 -e 's/mips-.*/mips/' \
205 -e 's/mipsel-.*/mipsel/' \
206 -e 's/cris.*/cris/' \
207 -e 's/i[3-9]86/i386/' \
208 )" >>prereq.mk
209 @echo 'HOSTCC:=${CC}' >>prereq.mk
210 @echo 'HOSTCFLAGS:=-O2' >>prereq.mk
211 @echo 'HOSTCXX:=${CXX}' >>prereq.mk
212 @echo 'HOSTCXXFLAGS:=-O2' >>prereq.mk
213 @echo 'LANGUAGE:=C' >>prereq.mk
214 @echo 'LC_ALL:=C' >>prereq.mk
215 @echo 'MAKE:=$${GMAKE}' >>prereq.mk
216 @echo "OStype:=$$(env uname)" >>prereq.mk
217 @echo "_PATH:=$$PATH" >>prereq.mk
218 @echo "PATH:=\$${TOPDIR}/scripts:$$PATH" >>prereq.mk
219 @echo "SHELL:=$$(which bash)" >>prereq.mk
220 @env NO_ERROR=${NO_ERROR} BASH="$$(which bash)" \
221 CC='${CC}' CPPFLAGS='${CPPFLAGS}' \
222 bash scripts/scan-tools.sh
223 @echo '===> Prerequisites checked successfully.'
224 @touch $@
226 .PHONY: prereq prereq-noerror